pl.allegro.tech.hermes.schema.SchemaCompilersFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hermes-schema Show documentation
Show all versions of hermes-schema Show documentation
Fast and reliable message broker built on top of Kafka.
The newest version!
package pl.allegro.tech.hermes.schema;
import org.apache.avro.Schema;
public interface SchemaCompilersFactory {
static SchemaCompiler avroSchemaCompiler() {
return source -> new Schema.Parser().parse(source.value());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy