kafka-ui/documentation/compose/proto/values.proto
Ilya Kuramshin 216b4acd3d
Serdes improvements and fixes (#2989)
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
2022-11-30 18:43:48 +04:00

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;
}