(cls, inner_cls, objs, f, inner_params={})
| 231 | |
| 232 | @classmethod |
| 233 | def stream_serialize(cls, inner_cls, objs, f, inner_params={}): |
| 234 | VarIntSerializer.stream_serialize(len(objs), f) |
| 235 | for obj in objs: |
| 236 | inner_cls.stream_serialize(obj, f, **inner_params) |
| 237 | |
| 238 | @classmethod |
| 239 | def stream_deserialize(cls, inner_cls, f, inner_params={}): |
nothing calls this directly
no test coverage detected