Inheritance: Model.Component
Esempio n. 1
0
 public Session(NetworkComponent network, AChannel channel, IMessagePacker messagePacker)
 {
     this.network       = network;
     this.channel       = channel;
     this.messagePacker = messagePacker;
     this.StartRecv();
 }
Esempio n. 2
0
 public void Awake(NetworkComponent net, AChannel c)
 {
     this.channel = c;
     this.requestCallback.Clear();
 }
Esempio n. 3
0
 public void Awake(NetworkComponent network, AChannel channel)
 {
     this.Get().Awake(network, channel);
 }
Esempio n. 4
0
 public Session(NetworkComponent network, AChannel channel)
 {
     this.network = network;
     this.channel = channel;
     this.StartRecv();
 }
Esempio n. 5
0
 public Session(NetworkComponent network, AChannel channel) : base(EntityType.Session)
 {
     this.network = network;
     this.channel = channel;
     this.StartRecv();
 }
Esempio n. 6
0
        public void Update()
        {
            NetworkComponent component = this.GetValue();

            component.Update();
        }