示例#1
0
 private void sendResponse(ChatResponse response)
 {
     Console.WriteLine("sending response " + response);
     //formatter.Serialize(stream, response);
     response.WriteDelimitedTo(stream);
     stream.Flush();
 }
示例#2
0
 private void sendResponse(ChatResponse response)
 {
     Console.WriteLine("sending response " + response);
     lock (stream)
     {
         response.WriteDelimitedTo(stream);
         stream.Flush();
     }
 }