Beispiel #1
0
 public AsyncReadResult(object state, Task <int> readTask, PipeOutputStream stream)
 {
     this.state    = state;
     this.readTask = readTask;
     this.stream   = stream;
 }
Beispiel #2
0
 public AsyncReadResult(object state, Task<int> readTask, PipeOutputStream stream)
 {
     this.state = state;
     this.readTask = readTask;
     this.stream = stream;
 }
Beispiel #3
0
 public Pipe()
 {
     this.input  = new PipeInputStream(this);
     this.output = new PipeOutputStream(this);
 }
Beispiel #4
0
 public Pipe()
 {
     this.input = new PipeInputStream(this);
     this.output = new PipeOutputStream(this);
 }