Tagged Questions
0
votes
1answer
422 views
How to use Reactive Extensions to cache, throttle, and relay multiple events?
I am trying to learn the new Reactive Extensions framework for .Net, and it sounds like the perfect solution for my application. After studying examples ( and being fairly weak with LINQ still ), I ...
1
vote
1answer
356 views
Buffer/Ignore events until period of inactivity then fire only last event
I have an observable that when it fires a message is displayed. After a delay I want to fade that message out, unless in the mean time that observable has fired again.
In other words given an ...
0
votes
3answers
778 views
trigger event after several ajax calls succeeded
I wonder which is the best approach to trigger an event after several (unordered) ajax calls finished.
To make it a bit clearer, I would like to call a Method doSomethingGreat() which triggers ...