Tagged Questions
The iobservable tag has no wiki summary.
26
votes
4answers
4k views
Implementing IObservable<T> from scratch
The Reactive Extensions come with a lot of helper methods for turning existing events and asynchronous operations into observables but how would you implement an IObservable<T> from scratch?
...
11
votes
1answer
380 views
Rx IObservable buffering to smooth out bursts of events
I have an Observable sequence that produces events in rapid bursts (ie: five events one right after another, then a long delay, then another quick burst of events, etc.). I want to smooth out these ...
7
votes
2answers
531 views
How to convert a WPF Button.Click Event into Observable using Rx and F#
I am trying to replicate some C# code which creates an IObservable from a Button.Click event.
I want to port this code to F#.
Here is the original C# code which compiles without errors:
...
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 ...
6
votes
4answers
2k views
IObservable<T> and INotifyPropertyChanged - is there a connection
I understand the IObservable & IObserver are implementations of the observer pattern and can be used in similiar circumstances to .Net events.
I was wondering if there is any relationship to ...
4
votes
2answers
145 views
Create an observable that repeatedly calls a method
I would like to repeatedly get a properties value and assign it to another property, but I don't have a handle on Rx's Observable creation quite yet. How do I create and subscribe to an observable ...
4
votes
2answers
261 views
Reactive: Latest value to be received by IObservable
I know that the following is a blocking call and will return the first value in the observable sequence:
var result = myObservable.First();
Depending on what type of subject I use this has ...
4
votes
1answer
695 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
668 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 ...
3
votes
1answer
118 views
Can IObservable.Catch continue with the same observable
Suppose a have an IObservable:
IObservable<long> obs = ...;
Can I do the following to guarantee that the observable will never ever stop?
IObservable<long> resilientObs = ...
3
votes
2answers
111 views
How to implement an atomic switch from one IObserver to another?
I have an IObservable<byte[]> that I transform into an IObservable<XDocument> using some intermediate steps:
var observedXDocuments =
from b in observedBytes
// Lot of ...
3
votes
2answers
174 views
Reactive: Converting merged IObservable's into one stream that acts like BehaviorSubject
Here is the sample code I have...
var rootSubject = new Subject<Types>();
var firstSubject = rootSubject.Where(x => x == Types.First);
var secondSubject = rootSubject.Where(x => x == ...
3
votes
1answer
78 views
Using Reactives to Merge Chunked Messages
So I'm attempting to use reactives to recompose chunked messages identified by ID and am having a problem terminating the final observable. I have a Message class which consists of Id, Total Size, ...
3
votes
5answers
1k views
Using IObservable (Rx) as a INotifyCollectionChanged Replacement for MVVM?
I have been looking into using Rx in an MVVM framework. The idea is to use 'live' LINQ queries over in-memory datasets to project data into View Models to bind with.
Previously this has been ...
3
votes
2answers
291 views
Should I use List<IObserver> or simply Action<T> to keep track of an IObservable's subscribers?
I'm implementing the IObservable<T> interface on some classes. I used Reflector to figure out how this is typically done in Rx. Concerning how an observable keeps track of its subscribers and ...
3
votes
2answers
698 views
IObservable in Silverlight 4 : type or namespace IObservable could not be found
Where can I find this class? I have included the Rx extensions. I have made sure the version I'm compiling to is Silverlight 4. My VS2010 IDE still has no idea what the type IObservable is.
I get a ...
3
votes
3answers
376 views
How is IObservable<double>.Average supposed to work?
Update
Looks like Jon Skeet was right (big surprise!) and the issue was with my assumption about the Average extension providing a continuous average (it doesn't).
For the behavior I'm after, I ...
3
votes
1answer
363 views
Rx: Piecing together multiple IObservable web requests
I'm creating multiple asynchronous web requests using IObservables and reactive extensions.
So this creates observable for "GET" web request:
var tweetObservalue =
from ...
3
votes
1answer
661 views
First faltering step with Reactive Extensions
I'm struggling with my first simple "hello world" RX application. I'm using VS2010 RC, plus the latest RX download.
The following is the simple console app;
class Program
{
static ...
2
votes
2answers
51 views
Reactive Throttle Returning All Items Added Within The TimeSpan
Given an IObservable<T> is there a way to use Throttle behaviour (reset a timer when an item is added, but have it return a collection of all the items added within that time?
Buffer provides a ...
2
votes
3answers
175 views
Reactive Observable Subscription Disposal
If I have access to an IObservable that I know is only ever going to return one item, will this work and is it the best usage pattern?
IDisposable disposable = null;
disposable = ...
2
votes
3answers
86 views
Using the latest value from IObservable
I've got three IObservable of types Foo, Bar and Baz. In addition, there is a method defined as:
void DoWork(Foo foo);
The IObservable are defined elsewhere as Subject and OnNext is called from ...
2
votes
1answer
47 views
ConnectableObservable Dispose all the subscribed methods at once?
so i have a game server every player has a timer so like:
this.player.Timer = from tick in TimerPublisher where tick % 1 == 0 select tick;
and i have some subscribed methods like:
...
2
votes
3answers
144 views
How to combine n observables dynamically into a list?
I have a collection of observables that generate state changes for a so-called Channel. And I have a ChannelSet that should monitor those channels.
I would like to write something like this: if one ...
2
votes
2answers
68 views
“Exclusive” and “Default” Subscription Modes in Rx
I have an observable sequence of event objects and a number of observers handling specific types of events. I need to accomplish the following scenarios:
Some event types need to be handled by the ...
2
votes
2answers
145 views
Transform IObservable of strings into IObservable of XDocuments
I have an IObservable<string> that contains (fragments of) XML documents. I'd like to transform one into the other. So for example, suppose I have the following fragments that are pushed from my ...
2
votes
1answer
261 views
Using IObservable to implement an asynchronous method
Is it reasonable to use a method that returns IObservable to implement an alternative to the standard Being/End asynchronous pattern? In the following code I'm wrapping a legacy API using Rx to ...
2
votes
1answer
381 views
Marshalling exceptions across threads (Reactive Extensions)
I have an IEnumerable sequence which contains some blocking network operations (replaced with some simple yields in the example code below). I am using Reactive Extensions to convert the stream of ...
2
votes
2answers
338 views
Use case for .Prune()
In my opinion, I have a pretty good "feel" for RX functions - I use many of them or can imagine how other can be useful - but I can't find a place for the .Prune function. I know that this is a ...
2
votes
2answers
135 views
How do I determine how many / clear subscribers there are on an IObservable<T>?
I'm wondering if there's a way to figure out how many observers there are subscribed to an IObservable object.
I've got a class that manages a HashTable of filtered IObservable instances, and I'd ...
2
votes
3answers
302 views
Observable.Delay calling Dispose before OnNext is fired
I am having problem understanding how Observable.Delay works and when the Dispose() is meant to be called. Would anyone familiar with Rx be able to help please?
The following code snippet:
...
2
votes
4answers
230 views
Get previous element in IObservable without re-evaluating the sequence
In an IObservable sequence (in Reactive Extensions for .NET), I'd like to get the value of the previous and current elements so that I can compare them. I found an example online similar to below ...
2
votes
1answer
229 views
IHttpAsyncHandler and IObservable web requests
Within Async handler I'm creating an IObservable from webrequest which returns a redirect string.
I'm subscribing to that observable and calling AsyncResult.CompleteCall() but I'm forced to use ...
2
votes
1answer
199 views
Split an IObservable and then combine after processing?
After experimenting with IObservables, I've decided to test them for the processing of incoming messages over a message bus. Essentially I get an IObservable<Request> and the Request contains ...
2
votes
3answers
958 views
IObservable<T> in .NET Framework 4.0 Beta2
IObservable<T> and IObserver<T> interfaces are placed directly in the System namespace in .NET Framework 4.0 Beta2. Why not in System.Collections.Generic, like IEnumerable<T>?
p.s. ...
1
vote
4answers
75 views
How to detect if an item in my ObservableCollection has changed
I have a datagrid which is bound to ObservableCollection<Product>. When the grid is updated this automatically updates the Product object in my collection.
What I want to do now is to have some ...
1
vote
3answers
64 views
Do I need to use IObservable to track changes to my collection?
Read quite a bit about IObservable and I am wondering what the pattern will give me (if anything) in my scenario.
I have a WPF application with a data grid, the grid is bound to an IObservable ...
1
vote
2answers
32 views
In RX how to combine two sources of different types
Set up:
First IObservable produces values of type A
Second IObservable produces values of type B
They produce value at different pace (quite fast, up to every 10 ms)
What I am trying to achieve:
...
1
vote
2answers
121 views
Combine multiple event sources into one IObservable with Rx
This is a question about how to use Reactive Extensions (Rx) in a specific event-related scenario.
The aim is to take a number of classes that trigger some event
And congregate them into one ...
1
vote
1answer
65 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
123 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
2answers
46 views
new data to observable with each method invocation
this may be really simple to those in the know-how, but how can i directly provide new data to a given observable, whenever a method of mine is invoked?
IObservable<int> _myObservable;
...
1
vote
1answer
38 views
Is it possible to create an IObservable from an Action listener?
I have a class that has an event defined as an Action<Guid>, as opposed to a classic EventHandler with EventArgs. Is there a way to convert this to an IObservable the same way would be done ...
1
vote
2answers
62 views
Combining local result with possible (timeout/error) async web result
I have two methods that both return an IObservable
IObservable<Something[]> QueryLocal();
and
IObservable<Something[]> QueryWeb();
QueryLocal is always successful. QueryWeb is ...
1
vote
3answers
138 views
IObservable - Ignoring the prior result
I have an IObservable which could be implemented as a BehaviorSubject, ReplaySubject or something similar.
In the following scenario I don't want the Subscriber to pick up the last cached value, ...
1
vote
2answers
171 views
IObservable - Replacing AutoResetEvent
Just wondering how I can replace the AutoResetEvent in the below? I was trying to think how to do it the RX way or with tasks, but I can see how to do it.
public void LogOnResponse LogOn()
{
...
1
vote
1answer
270 views
IObservable - How to Send/Publish/Push new values to collection
I want to expose an IObservable from my service layer.
For simplicity lets say that internally the service layer is getting Message from a remote server (via a socket) and that the socket library ...
1
vote
2answers
289 views
Rx IObservable: How to make a concrete push collection?
There are zillions of concrete implementations of IEnumerable: List<T>, Dictionary<T>, etc. What concrete implementations of IObservable are available?
1
vote
1answer
114 views
How could I go about getting historic records from an IObservable?
I'm monitoring a stream of stock quotes via an Observable which I watch to match a certain condition, e.g -
Observable
.Empty<Quote>
.Where(q => q.Price > watchPrice)
.Subscribe(q => { ...
1
vote
2answers
339 views
How to use the new BufferWithTimeOrCount in Rx that returns IObservable<IObservable<T>> instead of IObservable<IList<T>>
On Windows Phone 7 there is a new version of the BufferWithTimeOrCount extension method for IObservable that returns a "stream of streams" instead of the previous "stream of lists". I'm having ...