Beispiel #1
0
 public MotherBuilder()
 {
     comm      = new Comm("http://localhost", 9080);
     rcvThread = new Thread(rcvThreadProc);
     rcvThread.Start();
 }
 public MockTestHarness()
 {
     comm      = new Comm("http://localhost", 9090);
     rcvThread = new Thread(rcvThreadProc);
     rcvThread.Start();
 }
Beispiel #3
0
 public ChildBuilder(int port)
 {
     comm = new Comm("http://localhost", port);
 }