Tagged Questions
The iobserver tag has no wiki summary.
7
votes
4answers
1k views
Will there be IQueryable-like additions to IObservable? (.NET Rx)
The new IObservable/IObserver frameworks in the System.Reactive library coming in .NET 4.0 are very exciting (see this and this link).
It may be too early to speculate, but will there also be a (for ...
4
votes
1answer
698 views
IObservable vs Plain Events or Why Should I use IObservable?
Well, MS introduced the IObservable interface as part of the .net FW 4 and i thought "great finally, i must use it !".
So i dug deep and read posts and documentation and even implemented the pattern.
...
4
votes
1answer
669 views
How can I take advantage of IObservable/IObserver to get rid of my “god object”?
In a system I'm currently working on, I have many components which are defined as interfaces and base classes. Each part of the system has some specific points where they interact with other parts of ...
1
vote
1answer
68 views
IObservable/IObserver Model in StreamInsight
Can any one help me out in implementing streamInsight application using IObservable/IObserver Model. Im not getting the enough source to implement these. Any useful links on these topics in highly ...
1
vote
1answer
124 views
Implementing Observers and Subjects using IObserver/IObservable
I want to create a class that can be used to represent a dynamically computed value, and another class that represents a value can be the source (subject) for these dynamically computed values. The ...
1
vote
1answer
316 views
.NET 3.5 stand-in for System.IObserver<T>
I want to use the .NET 4.0 interface IObserver for a library that needs to support previous versions of the framework as well. I already have conditional compilation which lets me build for each of ...
1
vote
1answer
347 views
Exposing ConcurrentQueue<T> as IObservable<T>?
I wondered if it's possible to use a queue (specifically as ConcurrentQueue) as the source of an IObservable? Something like;
Queue = new ConcurrentQueue<IMessage>();
var xs = ...
0
votes
2answers
70 views
Is it possible to invoke subscribers's OnNexts on different threads in Rx?
I am new to Rx. I want to know if it is possible to dispatch a message to different subscribers such that they run on different thread? How can an IObserable control it? The plain Subject ...
0
votes
0answers
55 views
How to generate rails observer for child class
How to generate rails observer for child class and how to mention it in the application.rb
child class means a model within a folder,
Eg:-
class Comment::Message
....
....
end
Here Message is ...
-3
votes
1answer
128 views
Rx:Data mapping an IEnumerable sequence using IObservers as handlers [closed]
I am trying Rx to enable a pipeline of actions to be executed upon enumeration of a sequence. I know that this can be done with plain old .NET events, but I wanted to arrive at an Rx solution.
So I ...