Tagged in

Xr

theburningmonk.com
theburningmonk.com
the personal blog for Yan Cui
More information
Followers
925
Elsewhere
More, on Medium

stream_ext — version 0.3.0 is out

I have just published version 0.3.0 of stream_ext, my attempt to port the Rx APIs to Dart. In this version I have added a number of additional methods to the existing set of:

  • average
  • buffer

stream_ext — version 0.2.0 is out

Lately I’ve been making steady progress in porting over Rx APIs over to Dart with stream_ext, and with the release of version 0.2.0 a few more Rx methods have been added to the existing set of buffer, combineLatest, delay, max, merge, min, scan, sum, throttle, window…


stream_ext — bringing more Rx API to the Dart

Over the last week or so, I’ve been looking at and playing around with the Streams API in Dart, which has been (in part at least) based on the Rx API, and it’s easy to see the parallels between the two sets of APIs and you can find most of the core…


Reactive Extensions for Javascript — Observable vs ConnectableObservable

For those of you who are familiar with Reactive Extensions you should know all about observables already, but did you know that there’s another kind of observable sequence — Rx.ConnectableObservable.


Reactive Extensions for Javascript — Causing side effects with Do

I wrote previously about how you can set up multiple observable sequences and subscribe to them with multiple observers and create a many-to-many relationship between them.


Drag and Drop using Reactive Extensions for Javascript

Been a while since I’ve been meaning to check out Reactive Extensions for Javascript, I have been using the .Net version for a while now and blogged about some of the cool things you can do with the .Net version.


Rx framework — IObservable.Retry

As Wes Dyer put very elegantly:

Retry is to Repeat as Catch is to Concat

Ok ok, I know that’s not an exact quote, but I’m sure this is what he intended to say in the first instance :-P