示例#1
0
 public MemoryPoolChannel(MemoryPool pool)
 {
     _pool           = pool;
     _awaitableState = _awaitableIsNotCompleted;
 }
示例#2
0
 public MemoryPoolChannel(MemoryPool memory)
 {
     _memory         = memory;
     _awaitableState = _awaitableIsNotCompleted;
 }
示例#3
0
 public ReadableChannel(MemoryPool pool)
 {
     _channel = new Channel(pool);
 }
示例#4
0
 public ChannelFactory(MemoryPool pool)
 {
     _pool = pool;
 }