Helios.Reactor.Bootstrap.ServerBootstrap.Executor C# (CSharp) Method

Executor() public method

public Executor ( IExecutor executor ) : ServerBootstrap
executor IExecutor
return ServerBootstrap
        public ServerBootstrap Executor(IExecutor executor)
        {
            if (executor == null) throw new ArgumentNullException("executor");
            InternalExecutor = executor;
            return this;
        }