Esempio n. 1
0
 public Agent(IProtocol protocol, Regulus.Network.IConnectProviderable client)
 {
     _Serializer     = protocol.GetSerialize();
     _Machine        = new StageMachine();
     _Core           = new AgentCore(protocol);
     connectproivder = client;
 }
Esempio n. 2
0
            public ConnectStage(IPEndPoint ip, IConnectProviderable agent)
            {
                _Peer = agent.Spawn();


                _Ip = ip;
            }
Esempio n. 3
0
 public ClientHandler(int id, IConnectProviderable client, Command command, Console.IViewer viewer)
 {
     _Id      = id;
     _Client  = client;
     _Command = command;
     _Viewer  = viewer;
     _Updater = new Updater();
 }
Esempio n. 4
0
 public RemoteFactory(Regulus.Network.IConnectProviderable client)
 {
     _Client = client;
 }