(self, *args, **kwargs)
| 6 | |
| 7 | @asyncio.coroutine |
| 8 | def _send(self, *args, **kwargs): |
| 9 | for receiver in self: |
| 10 | res = receiver(*args, **kwargs) |
| 11 | if asyncio.iscoroutine(res) or isinstance(res, asyncio.Future): |
| 12 | yield from res |
| 13 | |
| 14 | def copy(self): |
| 15 | raise NotImplementedError("copy() is forbidden") |