I am working on some improvements for MassTransit, I am wondering, is there
a way I can query the container for all instances registered in the
container?
Here is my scenario
public interface IConsumer{}
public interface Consumes<T>.All : IConsumer { void Consume(T msg);};
I am not sure how they are going to be registered yet, so right now I am
just doing a slow brute force approach. Where I would take everything I
found in the container check to see if its of type IConsumer if so than I
can do my magic.
Any thoughts?
-d
--
You received this message because you are subscribed to the Google Groups
"Castle Project Users" 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/castle-project-users?hl=en.