Called when the other end calls write_eof() or equivalent. If this returns a false value (including None), the transport will close itself. If it returns a true value, closing the transport is up to the protocol.
(self)
| 98 | """ |
| 99 | |
| 100 | def eof_received(self): |
| 101 | """Called when the other end calls write_eof() or equivalent. |
| 102 | |
| 103 | If this returns a false value (including None), the transport |
| 104 | will close itself. If it returns a true value, closing the |
| 105 | transport is up to the protocol. |
| 106 | """ |
| 107 | |
| 108 | |
| 109 | class BufferedProtocol(BaseProtocol): |
no outgoing calls