Interface SerializableSupplier<T>

  • All Superinterfaces:
    Serializable, Supplier<T>
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface SerializableSupplier<T>
    extends Supplier<T>, Serializable
    Author:
    cbongiorno on 2020-04-13. This is necessary to overcome the fact that jenkins needs everything serializable, but we also don't want it to attempt to integrate with AWS We need to allow for mocks in our tests but the real thing in prod
    • Method Summary

      • Methods inherited from interface java.util.function.Supplier

        get