Akka.Interfaced.NotificationDispatcher.AddHandler C# (CSharp) Метод

AddHandler() приватный Метод

private AddHandler ( Type type, NotificationHandlerItem handler ) : void
type System.Type
handler NotificationHandlerItem
Результат void
        internal void AddHandler(Type type, NotificationHandlerItem handler)
        {
            var newTable = new Dictionary<Type, NotificationHandlerItem>(_handlerTable);
            newTable.Add(type, handler);
            _handlerTable = newTable;
        }
    }