IHandlerFactory
Extension point to allow the developer
to use his implementation of IHandler
using Castle.Core;
namespace Castle.MicroKernel
{
public interface IHandlerFactory
{
IHandler Create(ComponentModel model);
IHandler Create(ComponentModel model, bool isMetaHandler);
}
}