| 164 | |
| 165 | |
| 166 | class MyExtSerializer(pyfory.serializer.Serializer): |
| 167 | def write(self, write_context, value): |
| 168 | write_context.write_varint32(value.id) |
| 169 | |
| 170 | def read(self, read_context): |
| 171 | obj = MyExt() |
| 172 | obj.id = read_context.read_varint32() |
| 173 | return obj |
| 174 | |
| 175 | |
| 176 | @dataclass |
no outgoing calls