Class OperatorMaterialize<T>

java.lang.Object
rx.internal.operators.OperatorMaterialize<T>
Type Parameters:
T - the value type
All Implemented Interfaces:
Func1<Subscriber<? super Notification<T>>,Subscriber<? super T>>, Function, Observable.Operator<Notification<T>,T>

public final class OperatorMaterialize<T> extends Object implements Observable.Operator<Notification<T>,T>
Turns all of the notifications from an Observable into onNext emissions, and marks them with their original notification types within Notification objects.

See here for the Microsoft Rx equivalent.