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

GetHandler() public method

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