You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Channel.race calls Promise.race on each iteration, Channel.merge merges all async iterators into a single iterator, Channel.zip calls Promise.all on each iteration, and Channel.latest returns an iterator which iterates with the latest values when any individual iterator updates.
The text was updated successfully, but these errors were encountered:
TODO: Rename Channel.all to Channel.zip because all implies that all iterators are run to completion when in actuality the iterator returns when any child iterators return. d8bb3a5
Channel.race
Channel.merge
Channel.zip
Channel.latest
Channel.race
callsPromise.race
on each iteration,Channel.merge
merges all async iterators into a single iterator,Channel.zip
callsPromise.all
on each iteration, andChannel.latest
returns an iterator which iterates with the latest values when any individual iterator updates.The text was updated successfully, but these errors were encountered: