Package rx.internal.operators
Class OperatorMapNotification<T,R>
- java.lang.Object
-
- rx.internal.operators.OperatorMapNotification<T,R>
-
- Type Parameters:
T- the input value typeR- the output value type
- All Implemented Interfaces:
Func1<Subscriber<? super R>,Subscriber<? super T>>,Function,Observable.Operator<R,T>
public final class OperatorMapNotification<T,R> extends java.lang.Object implements Observable.Operator<R,T>
Applies a function of your choosing to every item emitted by anObservable, and emits the results of this transformation as a newObservable.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classOperatorMapNotification.MapNotificationSubscriber<T,R>
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>call(Subscriber<? super R> child)
-
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super R> child)
-
-