Lines Matching refs:data
30 Buffered data will be flushed asynchronously. No more data
31 will be received. After all buffered data is flushed, the
58 No data will be passed to the protocol's data_received()
108 def write(self, data):
109 """Write some data bytes to the transport.
111 This does not block; it buffers the data and arranges for it
117 """Write a list (or any iterable) of data bytes to the transport.
122 data = b''.join(list_of_data)
123 self.write(data)
126 """Close the write end after flushing buffered data.
141 Buffered data will be lost. No more data will be received.
177 def sendto(self, data, addr=None):
178 """Send data to the transport.
180 This does not block; it buffers the data and arranges for it
190 Buffered data will be lost. No more data will be received.