-
- 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 InputStreamSupplierSupplies input streams. Implementations are required to support thread-handover. While an instance will not be accessed concurrently by multiple threads, it will be called by a different thread than it was created on.- Since:
- 1.10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.InputStreamget()Supplies an input stream for a resource.
-