(
self, key: Union[str, bytes], headers: httputil.HTTPHeaders
)
| 712 | # boundary is currently pretty ad-hoc. |
| 713 | @abc.abstractmethod |
| 714 | def _process_server_headers( |
| 715 | self, key: Union[str, bytes], headers: httputil.HTTPHeaders |
| 716 | ) -> None: |
| 717 | raise NotImplementedError() |
| 718 | |
| 719 | @abc.abstractmethod |
| 720 | def start_pinging(self) -> None: |