I’m trying to setup a Protobuf custom type for Java and I noticed that the Python SDK features a “make_protobuf_type” function where you call it to make that Protofile a custom type for stateful functions. What would be the Java equivalent in this case?
I was looking around and found a ProtobufTypeSerializer that I thought I could implement as a custom type or maybe even call the functions in a SimpleType instance but the class does not have a public constructor to use its functions. Any recommendations? Would I have to setup my own custom Protobuf type serialized? If that is the case, would I pass in the Proto file of the generated Java proto file serialize / deserialize?