RxCookbook
RxCookbook copied to clipboard
Collection of recipes and snippets helping you create useful Rx code
As this post requests http://stackoverflow.com/questions/35606136/rx-buffer-without-empty-calls-to-subscriber/35616332#35616332, he would like to have a buffer run at 50ms. However when no values are found during the window, he doesn't want a buffer to...
Provide help to questions like [http://codereview.stackexchange.com/questions/89961/rx-net-file-watcher] Walk through the issues with [FileSystemWatcher](https://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher%28v=vs.110%29.aspx) and then link back to polling solution from #22
RxJs (and hopefully soon Rx.NET and others) supports wrting your Rx test with the visual aid of Marble diagrams. https://github.com/ReactiveX/rxjs/blob/master/doc/writing-marble-tests.md https://github.com/ReactiveX/rxjs/blob/master/spec/operators/bufferTime-spec.ts
It would be great to finally create the static code analysis tools that help enforce/catch the Rx Guidelines. - Implementing `IObservable` or `IObserver` - Not disposing - Not providing and...
Show how to wait for one event to occur before attempting another event. Give examples of when this is useful. - Waiting for Config/Permissions to be loaded - Re-executing when...
Create a post that provides a template of how to ask a CMVE question regarding Rx. - Marble diagram - input source via testObservables - some attempt at the query...
This question in SO (http://stackoverflow.com/questions/37687605/rx-net-message-parser) asks a very valid question of how do I parse some stream of bytes into messages based on a set of rules. The rules however...