- takeUntil(Single<T>, Publisher<U>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- takeUntil(Maybe<T>, Publisher<U>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- timeout(Maybe<T>, Publisher<U>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- timeout(Maybe<T>, Publisher<U>, Maybe<T>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toFlowable(ObservableSource<T>, BackpressureStrategy) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toFlowable(SingleSource<T>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toFlowable(MaybeSource<T>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toFlowable(CompletableSource) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toList(Flowable<T>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toList(Flowable<T>, int) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toList(Flowable<T>, Callable<C>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toMap(Flowable<T>, Function<? super T, ? extends K>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a single HashMap containing all items emitted by the source Publisher,
mapped by the keys returned by a specified keySelector function.
- toMap(Flowable<T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a single HashMap containing values corresponding to items emitted by the
source Publisher, mapped by the keys returned by a specified keySelector function.
- toMap(Flowable<T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>, Callable<? extends Map<K, V>>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a single Map, returned by a specified mapFactory function, that
contains keys and values extracted from the items emitted by the source Publisher.
- toMultimap(Flowable<T>, Function<? super T, ? extends K>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a single HashMap that contains an ArrayList of items emitted by the
source Publisher keyed by a specified keySelector function.
- toMultimap(Flowable<T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a single HashMap that contains an ArrayList of values extracted by a
specified valueSelector function from items emitted by the source Publisher, keyed by a
specified keySelector function.
- toMultimap(Flowable<T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>, Callable<? extends Map<K, Collection<V>>>, Function<? super K, ? extends Collection<? super V>>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a single Map, returned by a specified mapFactory function, that
contains a custom collection of values, extracted by a specified valueSelector function from
items emitted by the source Publisher, and keyed by the keySelector function.
- toMultimap(Flowable<T>, Function<? super T, ? extends K>, Function<? super T, ? extends V>, Callable<Map<K, Collection<V>>>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a single Map, returned by a specified mapFactory function, that
contains an ArrayList of values, extracted by a specified valueSelector function from items
emitted by the source Publisher and keyed by the keySelector function.
- toObservable(Flowable<T>) - Static method in class io.reactivex.interop.RxJava3Interop
-
- toSortedList(Flowable<T>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a list that contains the items emitted by the source Publisher, in a
sorted order.
- toSortedList(Flowable<T>, Comparator<? super T>) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a list that contains the items emitted by the source Publisher, in a
sorted order based on a specified comparison function.
- toSortedList(Flowable<T>, Comparator<? super T>, int) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Single that emits a list that contains the items emitted by the source Publisher, in a
sorted order based on a specified comparison function.
- toSortedList(Flowable<T>, int) - Static method in class io.reactivex.interop.RxJava3Interop
-
Returns a Flowable that emits a list that contains the items emitted by the source Publisher, in a
sorted order.