receive data and call callbacks
(self)
| 66 | |
| 67 | @abstractmethod |
| 68 | def receive(self): |
| 69 | '''receive data and call callbacks''' |
| 70 | |
| 71 | def callback(self, field: str, data, *args, **kwargs) -> None: |
| 72 | for cb in self._callbacks[field]: |
nothing calls this directly
no outgoing calls
no test coverage detected