I'm using the Hollywood pattern with Autofac's ContravariantRegistrationSource, using pretty much the classic example in the source code. For convenience, I include it here:
interface IHandler<in TCommand>
{
void Handle(TCommand command);
}
class Command { }
class DerivedCommand : Command { }
class CommandHandler : IHandler<Command> { ... }
var builder = new ContainerBuilder();
builder.RegisterSource(new ContravariantRegistrationSource());
builder.RegisterType<CommandHandler>();
var container = builder.Build();
// Source enables this line, even though IHandler<Command> is the
// actual registered type.
var handler = container.Resolve<IHandler<DerivedCommand>>();
handler.Handle(new DerivedCommand());
What I'd like to do now is dispatch an object whose type is unknown at compile time. I also want to avoid the service locator pattern.
Given...
object message = [some object here];
...I want to be able to resolve the appropriate handlers and call them. The best I've been able to come up with is as follows, but this still requires a reference to the container:
var handlerType = typeof(IHandler<>).MakeGenericType(message.GetType());
var consumeMethod = handlerType.GetMethod("Handle");
var handlers = (IEnumerable) _scope.Resolve(typeof(IEnumerable<>).MakeGenericType(handlerType));
foreach(var handler in handlers)
consumeMethod.Invoke(handler, new object[] {message});
How can I avoid the service locator pattern and still implement this call-appropriate-handler pattern?