MCPcopy Create free account
hub / github.com/ReactiveX/RxGo / newChannelIterable

Function newChannelIterable

iterable_channel.go:16–22  ·  view source on GitHub ↗
(next <-chan Item, opts ...Option)

Source from the content-addressed store, hash-verified

14}
15
16func newChannelIterable(next <-chan Item, opts ...Option) Iterable {
17 return &channelIterable{
18 next: next,
19 subscribers: make([]chan Item, 0),
20 opts: opts,
21 }
22}
23
24func (i *channelIterable) Observe(opts ...Option) <-chan Item {
25 mergedOptions := append(i.opts, opts...)

Callers 15

BackOffRetryMethod · 0.85
GroupByMethod · 0.85
GroupByDynamicMethod · 0.85
RetryMethod · 0.85
SampleMethod · 0.85
SequenceEqualMethod · 0.85
SerializeMethod · 0.85
StartWithMethod · 0.85
ZipFromIterableMethod · 0.85
AmbFunction · 0.85
CombineLatestFunction · 0.85
ConcatFunction · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…