public Session(NetworkComponent network, AChannel channel, IMessagePacker messagePacker) { this.network = network; this.channel = channel; this.messagePacker = messagePacker; this.StartRecv(); }
public void Awake(NetworkComponent net, AChannel c) { this.channel = c; this.requestCallback.Clear(); }
public void Awake(NetworkComponent network, AChannel channel) { this.Get().Awake(network, channel); }
public Session(NetworkComponent network, AChannel channel) { this.network = network; this.channel = channel; this.StartRecv(); }
public Session(NetworkComponent network, AChannel channel) : base(EntityType.Session) { this.network = network; this.channel = channel; this.StartRecv(); }
public void Update() { NetworkComponent component = this.GetValue(); component.Update(); }