Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

operator_dematerialize

crates.io ci codecov license

Convert notifications back into real signals.

See Also

Example

cargo run -p rx_core --example operator_dematerialize_example
let _subscription = [
  ObserverNotification::<_, Never>::Next(1),
  ObserverNotification::Complete,
]
.into_observable()
.dematerialize()
.subscribe(PrintObserver::new("dematerialize_operator"));

Output:

dematerialize_operator - next: 1
dematerialize_operator - completed
dematerialize_operator - unsubscribed