forked from D-Net/dnet-hadoop
Serialization-safe supplier added
This commit is contained in:
parent
e6e214dab5
commit
69540f6f78
|
@ -0,0 +1,8 @@
|
||||||
|
package eu.dnetlib.dhp.actionmanager;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface SerializableSupplier<T> extends Supplier<T>, Serializable {
|
||||||
|
}
|
Loading…
Reference in New Issue