Akka.Interfaced.RequestDispatcher.GetHandler C# (CSharp) Méthode

GetHandler() public méthode

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