Open.Core.EventBusHandler.EventBusHandler C# (CSharp) Method

EventBusHandler() public method

public EventBusHandler ( Type type, System.Action handler ) : System
type System.Type
handler System.Action
return System
        public EventBusHandler(Type type, Action handler)
        {
            this.type = type;
            this.handler = handler;
        }