Re: Comparing core.async and Reactive Extensions

2013-12-19 Thread Matthew Podwysocki
You can easily do bi-directional communication using Rx, but it's involving two Subjects, which are both Observables and Observers, or any flavor thereof Subjects whether Replay, Async, Behavior, or Buffered or Controlled (for backpressure coming soon). var subject1 = new Rx.Subject(); var subj

Re: Comparing core.async and Reactive Extensions

2013-12-19 Thread Matthew Podwysocki
this always been the way that Rx > worked (the locking part)? I haven't used Rx for several years, so I may be > off in my assumptions. > > Timothy > > > On Thu, Dec 19, 2013 at 9:41 AM, Matthew Podwysocki < > matthew.p...@gmail.com > wrote: > >> You c