Example #1
0
 void ProcessProtocol()
 {
     while (protocolQueue.Count > 0)
     {
         ClientProtocol protocol = protocolQueue.Dequeue();
         protocol.Process();
     }
 }