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.