use of io.vertx.kafka.client.serialization.JsonObjectDeserializer in project smallrye-reactive-messaging by smallrye.
the class KafkaCompanionTestBase method initCompanion.
@BeforeAll
static void initCompanion(@KafkaBootstrapServers String bootstrapServers) {
companion = new KafkaCompanion(bootstrapServers);
companion.registerSerde(JsonObject.class, Serdes.serdeFrom(new JsonObjectSerializer(), new JsonObjectDeserializer()));
}
Aggregations