Basic synchronous executor
Inheritance: IExecutor
Example #1
0
 public ServerBootstrap()
     : base()
 {
     UseProxies = true;
     WorkersShareFiber(true);
     BufferBytes = NetworkConstants.DEFAULT_BUFFER_SIZE;
     Workers = 2;
     InternalExecutor = new BasicExecutor();
 }
Example #2
0
 public ClientBootstrap() : base()
 {
     Workers = 2;
     InternalExecutor = new BasicExecutor();
 }