예제 #1
0
파일: _http.py 프로젝트: mcruse/monotone
 def send(self,data):
     self.write_calls.increment()
     bytecount = 0
     if self._is_connected:
         bytecount = AsyncChat.send(self, data)
     self.bytes_out.increment(bytecount)
     self.server.bytes_out.increment(bytecount)
     return bytecount
예제 #2
0
 def send(self, data):
     self.write_calls.increment()
     bytecount = 0
     if self._is_connected:
         bytecount = AsyncChat.send(self, data)
     self.bytes_out.increment(bytecount)
     self.server.bytes_out.increment(bytecount)
     return bytecount
예제 #3
0
파일: channel.py 프로젝트: mcruse/monotone
 def send(self, data):
     self.write_calls.increment()
     result = AsyncChat.send(self, data)
     self.bytes_out.increment(result)
     return result
예제 #4
0
 def send(self, data):
     self.write_calls.increment()
     result = AsyncChat.send(self, data)
     self.bytes_out.increment(result)
     return result