I have a couple of scenarios using RSB where I want to handle a
message by consuming it and determining at what time in the future I
want to handle it. I can then call bus.DelaySend(...) to handle the
timing. I love that feature!
The problem I encountered is when using a message which is a subclass
of another message:
public class TestClass { public string Foo { get; set; }
public class TestSubClass { }
If my consumer class is
public class TestConsumer : ConsumerOf<TestClass>,
CosumerOf<TestSubClass>
then when a message arrives of type TestSubClass, the
Consume(TestSubClass) method is called twice.
At least in my mind, this is not expected behavior. Is this a bug, or
just a misplaced expectation on my part?
Thanks.
--
You received this message because you are subscribed to the Google Groups
"Rhino Tools Dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rhino-tools-dev?hl=en.