Return the state of the reader as a dict. Returns: A dict containing the reader state. At minimum, it should contain the `current_index` field.
(self)
| 15 | raise NotImplementedError |
| 16 | |
| 17 | def state_dict(self) -> Dict: |
| 18 | """Return the state of the reader as a dict. |
| 19 | Returns: |
| 20 | A dict containing the reader state. At minimum, it should contain |
| 21 | the `current_index` field. |
| 22 | """ |
| 23 | raise NotImplementedError |
| 24 | |
| 25 | def load_state_dict(self, state_dict: Dict) -> None: |
| 26 | raise NotImplementedError |
no outgoing calls