Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 281 Bytes

run.md

File metadata and controls

17 lines (10 loc) · 281 Bytes

Run Operator

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