Interface FlowableDocBasic<T>

Type Parameters:
T - the element type of the flow
All Known Implementing Classes:
AsyncProcessor, BehaviorProcessor, ConnectableFlowable, Flowable, FlowableProcessor, GroupedFlowable, MulticastProcessor, PublishProcessor, ReplayProcessor, UnicastProcessor

public sealed interface FlowableDocBasic<T> permits Flowable<T>
Documents a set of operators so that the main Flowable source file is not cluttered.
Since:
4.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    filter(@NonNull Predicate<? super T> predicate)
    Filters items emitted by the current Flowable by only emitting those that satisfy a specified predicate.
    map(@NonNull Function<? super T, ? extends @NonNull R> mapper)
    Returns a Flowable that applies a specified function to each item emitted by the current Flowable and emits the results of these function applications.