Interface CollectionSupplier<OUT>
-
- Type Parameters:
OUT
- The type of the output.
@PublicEvolving public interface CollectionSupplier<OUT>
Supplies a collection of output. Used inResultFuture
to provide a supplier for results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<OUT>
get()
Returns the collection of results.
-
-
-
Method Detail
-
get
Collection<OUT> get() throws Exception
Returns the collection of results.- Throws:
Exception
-
-