Akka.Interfaced.NotificationDispatcher.GetHandler C# (CSharp) Method

GetHandler() public method

public GetHandler ( Type type ) : NotificationHandlerItem
type System.Type
return NotificationHandlerItem
        public NotificationHandlerItem GetHandler(Type type)
        {
            NotificationHandlerItem item;
            return _handlerTable.TryGetValue(type, out item) ? item : null;
        }