Package rx.internal.operators
Class SingleOnSubscribeMap<T,R>
- java.lang.Object
-
- rx.internal.operators.SingleOnSubscribeMap<T,R>
-
- Type Parameters:
T- the input value typeR- the return value type
- All Implemented Interfaces:
Action,Action1<SingleSubscriber<? super R>>,Function,Single.OnSubscribe<R>
public final class SingleOnSubscribeMap<T,R> extends java.lang.Object implements Single.OnSubscribe<R>
Applies a function of your choosing to every item emitted by anSingle, and emits the results of this transformation as a newSingle.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classSingleOnSubscribeMap.MapSubscriber<T,R>
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcall(SingleSubscriber<? super R> o)
-
-
-
Method Detail
-
call
public void call(SingleSubscriber<? super R> o)
-
-