Helios.Net.Bootstrap.ClientBootstrap.Executor C# (CSharp) Method

Executor() public method

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