Serialization-safe supplier added

This commit is contained in:
Przemysław Jacewicz 2020-03-11 16:59:05 +01:00
parent e6e214dab5
commit 69540f6f78
1 changed files with 8 additions and 0 deletions

View File

@ -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 {
}