コード例 #1
0
ファイル: TcpWriteBatch.cs プロジェクト: PlumpMath/NetUV
 public void Dispose()
 {
     this.dataBuffer.Dispose();
     this.server = null;
     this.loop   = null;
 }
コード例 #2
0
ファイル: TcpWriteBatch.cs プロジェクト: PlumpMath/NetUV
 public void Run()
 {
     this.server = new BlackholeServer();
     this.loop   = this.server.Loop;
     this.StartClient();
 }
コード例 #3
0
ファイル: TcpWriteBatch.cs プロジェクト: wazazhang/NetUV
 public void Dispose()
 {
     this.server = null;
     this.loop   = null;
 }