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

AddHandler() private method

private AddHandler ( Type type, NotificationHandlerItem handler ) : void
type System.Type
handler NotificationHandlerItem
return void
        internal void AddHandler(Type type, NotificationHandlerItem handler)
        {
            var newTable = new Dictionary<Type, NotificationHandlerItem>(_handlerTable);
            newTable.Add(type, handler);
            _handlerTable = newTable;
        }
    }