Run Operator

February 25, 2020 ยท View on GitHub

Overview

Create an Observer without consuming the emitted items.

It returns a <-chan struct{} that closes once the Observable terminates.

Example

<-rxgo.Just(1, 2, errors.New("foo"))().Run()

Options