Re: [protobuf] how to ignore some fields when serialize object in proto3

2022-11-04 Thread 'Adam Cozzette' via Protocol Buffers
No, there is no built-in support for serializing a message while ignoring particular fields. Probably the easiest way to do that would be to just make a copy of the message that excludes the fields you want to skip. On Thu, Nov 3, 2022 at 8:16 PM 哈 wrote: > just like > protected void init(Kryo

[protobuf] how to ignore some fields when serialize object in proto3

2022-11-03 Thread
just like protected void init(Kryo kryo) { kryo.setDefaultSerializer(CompatibleFieldSerializer.class); Serializer serializer = kryo.getSerializer(More.class); if (serializer instanceof FieldSerializer) { FieldSerializer fieldSerializer = (FieldSerializer)serializer;