Appccelerate.EventBroker.Factories.UnitTestFactory.CreateHandler C# (CSharp) Method

CreateHandler() public method

Creates a subscription handler usable in unit tests (always on publisher thread).
public CreateHandler ( Type handlerType ) : IHandler
handlerType System.Type Type of the handler to create.
return IHandler
        public override IHandler CreateHandler(Type handlerType)
        {
            return base.CreateHandler(typeof(Handlers.OnPublisher));
        }
    }
UnitTestFactory