Exemplo n.º 1
0
 public SendThread(CommunicationQueue <operation> q, TcpClient c)
 {
     _q = q;
     _c = c;
 }
Exemplo n.º 2
0
 public Client(CommunicationQueue <operation> q, CommunicationQueue <operation> r)
 {
     _q = q;
     _r = r;
     //_b = b;
 }
Exemplo n.º 3
0
 public SendThread(List <Socket> s, CommunicationQueue <operation> q, CommunicationHash <int, int> h)
 {
     _s = s;
     _q = q;
     _h = h;
 }
Exemplo n.º 4
0
 public RecvThread(Socket s, CommunicationQueue <operation> q, CommunicationHash <int, int> h)
 {
     _s = s;
     _q = q;
     _h = h;
 }