Esempio n. 1
0
 public Server(string address, ServerMachine machine)
 {
     Address            = address;
     this.serverMachine = machine;
     this.serverState   = new FailedState(this);
 }
Esempio n. 2
0
 internal FrozeState(Server server)
     : base(server, new Dictionary <int, IPadInt>())
 {
     oldState     = server.State;
     stateMessage = "FROZE STATE";
 }