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

observable_just

crates.io ci codecov license

Immediately emits a single value.

See Also

Example

cargo run -p rx_core --example observable_just_example
let _s = just("hello").subscribe(PrintObserver::new("just"));

Output:

just - next: "hello"
just - completed
just - unsubscribed