Exemplo n.º 1
0
 public Listener(ConnManager parent, int port)
 {
     manager   = parent;
     this.port = port;
 }
Exemplo n.º 2
0
 public Writer(ConnectionState state, ConnManager manager)
 {
     this.state   = state;
     this.manager = manager;
 }
Exemplo n.º 3
0
 public Program()
 {
     // Constructor to set port number when called
     this.manager = new ConnManager(11000, false);
 }