Package rx.internal.operators
Class OperatorDoAfterTerminate<T>
- java.lang.Object
-
- rx.internal.operators.OperatorDoAfterTerminate<T>
-
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super T>>
,Function
,Observable.Operator<T,T>
public final class OperatorDoAfterTerminate<T> extends java.lang.Object implements Observable.Operator<T,T>
Registers an action to be called after an Observable invokesonComplete
oronError
.See also the MSDN Observable.Finally method
-
-
Constructor Summary
Constructors Constructor Description OperatorDoAfterTerminate(Action0 action)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super T> child)
-
-
-
Field Detail
-
action
final Action0 action
-
-
Constructor Detail
-
OperatorDoAfterTerminate
public OperatorDoAfterTerminate(Action0 action)
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super T> child)
- Specified by:
call
in interfaceFunc1<Subscriber<? super T>,Subscriber<? super T>>
-
-