示例#1
0
 public SendThread(List <Socket> s, CommunicationQueue <operation> q, CommunicationHash <int, int> h)
 {
     _s = s;
     _q = q;
     _h = h;
 }
示例#2
0
 public RecvThread(Socket s, CommunicationQueue <operation> q, CommunicationHash <int, int> h)
 {
     _s = s;
     _q = q;
     _h = h;
 }