Akka.Interfaced.NotificationDispatcher.GetHandler C# (CSharp) 메소드

GetHandler() 공개 메소드

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