Encode an outgoing frame. Args: frame: Outgoing frame. Returns: Encoded frame.
(self, frame: Frame)
| 36 | raise NotImplementedError |
| 37 | |
| 38 | def encode(self, frame: Frame) -> Frame: |
| 39 | """ |
| 40 | Encode an outgoing frame. |
| 41 | |
| 42 | Args: |
| 43 | frame: Outgoing frame. |
| 44 | |
| 45 | Returns: |
| 46 | Encoded frame. |
| 47 | |
| 48 | """ |
| 49 | raise NotImplementedError |
| 50 | |
| 51 | |
| 52 | class ClientExtensionFactory: |
no outgoing calls
no test coverage detected