Let's say, we have a class:

public class Foo
{
   public string Do(int param)
   {
   }
}

I'd like to create an observable of values that are being produced by Do method. One way to do it would be to create an event which is being called from Do and use Observable.FromEvent to create the observable. But somehow I don't feel good about creation of an event just for the sake of the task. Is there a better way to do it?

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Matt's answer made me thinking about this:

public class Foo
{
    private readonly Subject<string> _doValues = new Subject<string>();

    public IObservable<string> DoValues { get { return _doValues; } }

    public string Do(int param)
    {
        var ret = (param * 2).ToString();
        _doValues.OnNext(ret);
        return ret;
    }
}


var foo = new Foo();
foo.DoValues.Subscribe(Console.WriteLine);
foo.Do(2);
link|improve this answer
If this is what you are really looking for then, you should at least protect your internal state by changing one line to public IObservable<string> DoValues { get { return _doValues.AsObservable(); } } . This will prevent consumers, just casting your IObservable back to an ISubject and OnNext-ing their own values. :( – Lee Campbell Feb 13 at 17:59
feedback

I'm assuming you control the Foo class, since you're talking about adding an event to it as one option. Since you own the class, is there any reason you can't define your own IObservable implementation for the Do method?

public class Foo
{
    DoObservable _doValues = new DoObservable();

    public IObservable<String> DoValues
    {
        return _doValues;
    }

    public string Do(int param)
    {
        string result;
        // whatever
        _doValues.Notify(result);
    }
}

public class DoObservable : IObservable<String>
{
    List<IObserver<String>> _observers = new List<IObserver<String>>();

    public void Notify(string s)
    {
        foreach (var obs in _observers) obs.OnNext(s);
    }

    public IObserver<String> Subscribe(IObserver<String> observer)
    {
        _observers.Add(observer);
        return observer;
    }
}

Your class now has an Observable<String> property which provides a way to subscribe to the values returned from the Do method:

public class StringWriter : IObserver<String>
{
    public void OnNext(string value)
    {
        Console.WriteLine("Do returned " + value);
    }

    // and the other IObserver<String> methods
}

var subscriber = myFooInstance.DoValues.Subscribe(new StringWriter());
// from now on, anytime myFooInstance.Do() is called, the value it 
// returns will be written to the console by the StringWriter observer.

I've not dabbled too much into the reactive framework, but I think this is close to how you would do this.

link|improve this answer
You can make your DoObserver class an inner (nested) class of the Foo class, too, to keep it as a closed system. – Matt Hamilton Feb 4 '10 at 5:16
Also see stackoverflow.com/questions/1768974/…, which has a more complete implementation including supporting unsubscribing via IDisposable. – Matt Hamilton Feb 4 '10 at 5:21
Your DoObservable is just Subject<String>, no need to reinvent the wheel – Paul Betts Feb 13 at 22:53
feedback

Generally you want to avoid using Subjects. In my experiance it is a sign you are doing something wrong. Observable.Create or perhaps Generate are normally better fits.

I would be interested to see what you are actually trying to do to see if we can provide a better answer. Lee

link|improve this answer
I disagree, Observable.Create doesn't enforce Rx semantics, you have to do it yourself - it's easier to use Subjects even if it's less Functionally Correctâ„¢. Create is good when you need it, but it's often overkill. – Paul Betts Feb 13 at 22:55
Subject is a "bridge" between functional and object oriented worlds provided by RX. So unless your code is 100% functional, subjects are quite useful. – Sergey Aldoukhov Feb 13 at 23:07
Agree to disagree. Having used Rx for 2years on a commercial project with a group of smart guys we all came to the conclusion that Subjects are a code smell, not always wrong, but generally a point of discussion in a code review. Also a shame that people are encouraging the @Sergey and not pointing out the problems with his code (specifically .AsObservable()). Only trying to help. – Lee Campbell Feb 14 at 8:20
@lee-campbell Don't judge code by "smell"... I never had a single problem with subjects, so I'm talking from experience. Same goes to your comment on casting property to ISubject - while it is possible, there is absolutely no reason to do so. BTW, you're welcome to create a question on "Why RX Subjects are to be avoided" - I'll be interested to see the responces and you'll get a ton of rep. – Sergey Aldoukhov Feb 14 at 19:19
Cheers, good idea. Also would keen to see what the Rx Forums think. There seems to be much more Rx traffic there and some great ideas bouncing around. – Lee Campbell Feb 15 at 8:59
show 2 more comments
feedback

I would look at the EventAggregator model. There's a great article with sample code that shows an implementation with StructureMap.

http://www.codeproject.com/KB/architecture/event_aggregator.aspx

link|improve this answer
My question was specifically on how to most efficiently accomplish the task using the RX extensions. The link you provided is not related to RX. – Sergey Aldoukhov Feb 5 '10 at 16:03
Sorry for the confusion here, but the question is "What is a good way to create an IObservable for a method?". Where does it say anything about RX Extensions? EventAggregator is a decoupled form of achieving the Observer Pattern. Still worth a look in my opinion. – Corey Coogan Feb 5 '10 at 16:08
There is a context that points to RX - the tag, the reference to an existing solution of using Observable.FromEvent. Anyway, from now on the only "real" IObservable is the one that comes from System.Reactive namespace. – Sergey Aldoukhov Feb 6 '10 at 7:28
In fact IObservable is in the System namespace and is built into .NET 4 and .NET 4.5 – Lee Campbell Feb 13 at 18:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.