
Serdes improvements and fixes: 1. Built-in serdel's auto-configuration separated from explicit configuration (when properties set in serde configuration) 2. Serdes initialization logic extracted into SerdesInitializer.java 3. docker-compose example with serdes configuration added 4. Serialization.md document fixed
12 lines
169 B
Protocol Buffer
12 lines
169 B
Protocol Buffer
syntax = "proto3";
|
|
package test;
|
|
|
|
message MySpecificTopicValue {
|
|
string f1 = 1;
|
|
string f2 = 2;
|
|
}
|
|
|
|
message MyValue {
|
|
int32 version = 1;
|
|
string payload = 2;
|
|
}
|