use of io.confluent.kafka.schemaregistry.id.IdGenerator in project schema-registry by confluentinc.
the class KafkaSchemaRegistry method identityGenerator.
protected IdGenerator identityGenerator(SchemaRegistryConfig config) {
config.checkBootstrapServers();
IdGenerator idGenerator = new IncrementalIdGenerator(this);
idGenerator.configure(config);
return idGenerator;
}
Aggregations