Table of Contents

Class Materialize

Namespace
Bonsai.Reactive
Assembly
Bonsai.Core.dll

Represents an operator that materializes the implicit notifications of an observable sequence as explicit notification values.

Marble diagram

Materialize surfaces all notifications in the source sequence as explicit values, including termination messages (OnError and OnCompleted). Converting termination messages into explicit notifications can be useful to reveal the entire behavior of a sequence for debugging or logging purposes.

The application of Materialize can be reversed by applying Dematerialize to the result sequence.

[Combinator]
public class Materialize
Inheritance
Materialize
Inherited Members

Methods

Process<TSource>(IObservable<TSource>)

Materializes the implicit notifications of an observable sequence as explicit notification values.