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 Object
implements Observable.Operator<T,Notification<T>>
Reverses the effect of
OperatorMaterialize 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 ClassesModifier and TypeClassDescription(package private) static final classLazy initialization via inner-class holder. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSubscriber<? super Notification<T>> call(Subscriber<? super T> child) static OperatorDematerializeinstance()
-
Constructor Details
-
OperatorDematerialize
OperatorDematerialize()
-
-
Method Details
-
instance
- Returns:
- a singleton instance of this stateless operator.
-
call
- Specified by:
callin interfaceFunc1<Subscriber<? super T>,Subscriber<? super Notification<T>>>
-