protected override bool DoProcessChannel(AbstractNetowrkChannel channel)
        {
            int count = channel.ProcessSerializeQueue();

            return(count > 0);
        }
Exemple #2
0
 public void AddChannel(AbstractNetowrkChannel channel)
 {
     _channels.Add(channel);
 }
Exemple #3
0
 public void RemoveChannel(AbstractNetowrkChannel channel)
 {
     _channels.Remove(channel);
 }
Exemple #4
0
 protected abstract bool DoProcessChannel(AbstractNetowrkChannel channel);