Bus.Dispatch.MessageDispatcher.HandlerDispatcher.HandlerDispatcher C# (CSharp) Method

HandlerDispatcher() public method

public HandlerDispatcher ( Type messageType, IMessage>.Action handleMethod, Type handlerType, object instance ) : System
messageType System.Type
handleMethod IMessage>.Action
handlerType System.Type
instance object
return System
            public HandlerDispatcher(Type messageType, Action<object, IMessage> handleMethod, Type handlerType, object instance)
            {
                MessageType = messageType;
                HandleMethod = handleMethod;
                HandlerType = handlerType;
                Instance = instance;
            }
MessageDispatcher.HandlerDispatcher