We've got a client calling off to a TIBCO EMS queue and are wiring up the events like this:

var msgConsumer = _session.CreateConsumer(responseQueue);
var response = Observable.FromEvent<EMSMessageHandler,EMSMessageEventArgs>
            (h => msgConsumer.MessageHandler += h, h => msgConsumer.MessageHandler -= h)
            .Where(arg => arg.Message.CorrelationID == message.MessageID);

When I call response.Subscribe(...) I get System.ArgumentException "Error binding to target method."

I can make it work with Observable.FromEventPattern<EMSMessageEventArgs>(msgConsumer, "MessageHandler") but then it's got the event as a string and just not as clean.

Also I have IObservable<EventPattern<EMSMessageEventArgs>> rather than IObservable<EMSMessageEventArgs>

What I'd like to understand is: when should I use FromEvent over FromEventPattern? It seems a bit trial and error.

link|improve this question

80% accept rate
There are other overloads of FromEventPattern which do not have a string parameter if that's what you are concerned about. – Richard Hein Jun 24 '11 at 14:11
Thanks, I'd missed that overload. Yes the string did bother me, but it was more the difference between my FromEvent and FromEventPattern (see comment on your answer below) – baralong Jun 27 '11 at 1:23
feedback

1 Answer

up vote 13 down vote accepted

"Use FromEvent for events structurally don't look like a .NET event pattern (i.e. not based on sender, event args), and use FromEventPattern for the pattern-based ones." - Bart De Smet (Rx team)

link|improve this answer
3  
Thanks, I had found that comment but I think I misunderstood what it meant. Would it be correct to say? The .NET event pattern has a signature of delegate void Handler(object sender, EventArgs args) if the event matched that use FromEventPattern (more verbose but, perhaps a littler clearer) – baralong Jun 27 '11 at 1:09
@baralong, That's right. Cheers! – Richard Hein Jun 27 '11 at 12:30
feedback

Your Answer

 
or
required, but never shown

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