(self)
| 247 | # -- write path -------------------------------------------------------- |
| 248 | |
| 249 | def _alloc_id(self) -> int: |
| 250 | i = self._next_id |
| 251 | self._next_id += 1 |
| 252 | return i |
| 253 | |
| 254 | def _write(self, env: pb.Envelope) -> None: |
| 255 | proc = self._proc |
no outgoing calls
no test coverage detected