Package rx.internal.operators
Class OperatorDoOnEach<T>
- java.lang.Object
-
- rx.internal.operators.OperatorDoOnEach<T>
-
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super T>>
,Function
,Observable.Operator<T,T>
public class OperatorDoOnEach<T> extends java.lang.Object implements Observable.Operator<T,T>
Converts the elements of an observable sequence to the specified type.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Observer<? super T>
doOnEachObserver
-
Constructor Summary
Constructors Constructor Description OperatorDoOnEach(Observer<? super T> doOnEachObserver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super T> observer)
-
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super T> observer)
- Specified by:
call
in interfaceFunc1<Subscriber<? super T>,Subscriber<? super T>>
-
-