- to(Observable<T>) - Static method in class rx.observable.ListenableFutureObservable
-
Immediately subscribes to the Observable and returns a future that will contain the only one value T passed in to the
Observer.onNext(Object).
- toImmutableList() - Static method in class rx.transformer.GuavaTransformers
-
Returns a Transformer<T,ImmutableList<T>> that maps an Observable<T> to an Observable<ImmutableList<T>>
- toImmutableListMultimap(Func1<T, K>, Func1<T, V>) - Static method in class rx.transformer.GuavaTransformers
-
Returns a Transformer<T,ImmutableListMultimap<K,V>> that maps an Observable<T> to an Observable<ImmutableListMultimap<K,V>>>
with a given Func1<T,K> keyMapper and Func1<T,V> valueMapper
- toImmutableMap(Func1<T, K>, Func1<T, V>) - Static method in class rx.transformer.GuavaTransformers
-
Returns a Transformer<T,ImmutableMap<K,V>> that maps an Observable<T> to an Observable<ImmutableMap<K,V>>>
with a given Func1<T,K> keyMapper and Func1<T,V> valueMapper
- toImmutableSet() - Static method in class rx.transformer.GuavaTransformers
-
Returns a Transformer<T,ImmutableSet<T>> that maps an Observable<T> to an Observable<ImmutableSet<T>>