Package io.reactivex.rxjava3.core
Interface CompletableTransformer
-
- 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 CompletableTransformerConvenience interface and callback used by the compose operator to turn aCompletableinto anotherCompletablefluently.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull CompletableSourceapply(@NonNull Completable upstream)Applies a function to the upstreamCompletableand returns aCompletableSource.
-
-
-
Method Detail
-
apply
@NonNull @NonNull CompletableSource apply(@NonNull @NonNull Completable upstream)
Applies a function to the upstreamCompletableand returns aCompletableSource.- Parameters:
upstream- the upstreamCompletableinstance- Returns:
- the transformed
CompletableSourceinstance
-
-