Package rx.internal.operators
Class OperatorDematerialize<T>
- java.lang.Object
-
- rx.internal.operators.OperatorDematerialize<T>
-
- Type Parameters:
T
- the wrapped value type
- All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super Notification<T>>>
,Function
,Observable.Operator<T,Notification<T>>
public final class OperatorDematerialize<T> extends java.lang.Object implements Observable.Operator<T,Notification<T>>
Reverses the effect ofOperatorMaterialize
by transforming the Notification objects emitted by a source Observable into the items or notifications they represent.See here for the Microsoft Rx equivalent.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
OperatorDematerialize.Holder
Lazy initialization via inner-class holder.
-
Constructor Summary
Constructors Constructor Description OperatorDematerialize()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super Notification<T>>
call(Subscriber<? super T> child)
static OperatorDematerialize
instance()
-
-
-
Method Detail
-
instance
public static OperatorDematerialize instance()
- Returns:
- a singleton instance of this stateless operator.
-
call
public Subscriber<? super Notification<T>> call(Subscriber<? super T> child)
- Specified by:
call
in interfaceFunc1<Subscriber<? super T>,Subscriber<? super Notification<T>>>
-
-