All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.allegro.tech.hermes.schema.SchemaCompilersFactory Maven / Gradle / Ivy

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