(self)
| 748 | |
| 749 | @asyncio.coroutine |
| 750 | def drain(self): |
| 751 | if self._resp_impl is None: |
| 752 | raise RuntimeError("Response has not been started") |
| 753 | yield from self._resp_impl.transport.drain() |
| 754 | |
| 755 | @asyncio.coroutine |
| 756 | def write_eof(self): |
no outgoing calls