Interface TerminalStage<I,O>
-
- All Superinterfaces:
Function<io.reactivex.Flowable<I>,CompletionStage<O>>
- 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 TerminalStage<I,O> extends Function<io.reactivex.Flowable<I>,CompletionStage<O>>
Defines a terminal stage - so a stream subscription and observation.- Author:
- Clement Escoffier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletionStage<O>apply(io.reactivex.Flowable<I> flowable)Creates theCompletionStagecalled when the embedded logic has completed or failed.
-
-
-
Method Detail
-
apply
CompletionStage<O> apply(io.reactivex.Flowable<I> flowable)
Creates theCompletionStagecalled when the embedded logic has completed or failed.
-
-