Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 272 Bytes

fromchannel.md

File metadata and controls

16 lines (10 loc) · 272 Bytes

FromChannel Operator

Overview

Create a cold observable from a channel.

The items are consumed when an Observer subscribes.

Example

ch := make(chan rxgo.Item)
observable := rxgo.FromChannel(ch)