Akka.Dispatch.MessageDispatcherConfigurator.Dispatcher C# (CSharp) Method

Dispatcher() public abstract method

Returns a Dispatcher instance. Whether or not this MessageDispatcherConfigurator returns a new instance or returns a reference to an existing instance is an implementation detail of the underlying implementation.
public abstract Dispatcher ( ) : MessageDispatcher
return MessageDispatcher
        public abstract MessageDispatcher Dispatcher();
    }

Usage Example

Esempio n. 1
0
        public override MessageDispatcher Dispatcher()
        {
            var dispatcher = _configurator.Dispatcher();

            dispatcher.Id                     = Id;
            dispatcher.Throughput             = Throughput;
            dispatcher.ThroughputDeadlineTime = ThroughputDeadlineTime > 0 ? ThroughputDeadlineTime : null;
            return(dispatcher);
        }
All Usage Examples Of Akka.Dispatch.MessageDispatcherConfigurator::Dispatcher
MessageDispatcherConfigurator