-
-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
We need to implement Apache Avro codec encoder in src/avro/ folder.
See Apache Avro specification: https://avro.apache.org/docs/1.12.0/specification/
- Add Apache Avro schema validator routine.
- Create
AvroEncoderclass which can write toWritervalues, just values.encoder.writeNumber(num), etc. - Create
AvroSchemaEncoderclass which can write toWriterdata given schema.encoder.writeNumber(num, numSchema), etc. - Add tests.
Copilot