Create a cold observable from a channel.
The items are consumed when an Observer subscribes.
ch := make(chan rxgo.Item)
observable := rxgo.FromChannel(ch)
Create a cold observable from a channel.
The items are consumed when an Observer subscribes.
ch := make(chan rxgo.Item)
observable := rxgo.FromChannel(ch)