getify / asynquence

Asynchronous flow control (promises, generators, observables, CSP, etc)
1.74k stars 150 forks source link

contrib: method to compose multiple reactive sequences #69

Open getify opened 9 years ago

getify commented 9 years ago
var stream1 = ASQ.react(..);

var stream2 = ASQ.react(..);

var stream3 = ASQ.react.????( stream1, stream2 );
getify commented 9 years ago

Reactive Sequence Composition

Reactive Sequence Transform

staltz commented 9 years ago

Sampling might be missing. See withLatestFrom and sample in RxJS. Also mergeMap/switchMap/concatMap are all variants of the "asyncMap" type of composition.

legodude17 commented 8 years ago

What is this issue about? Something that should be added?

getify commented 8 years ago

This is an ongoing tracking issue about me adding more reactive-sequences support. some of the code has been released, but i have an an outstanding set of work to rearrange it that has not yet been pushed.