Example usage for com.fasterxml.jackson.dataformat.avro AvroFactory AvroFactory

List of usage examples for com.fasterxml.jackson.dataformat.avro AvroFactory AvroFactory

Introduction

In this page you can find the example usage for com.fasterxml.jackson.dataformat.avro AvroFactory AvroFactory.

Prototype

public AvroFactory() 

Source Link

Document

Default constructor used to create factory instances.

Usage

From source file:org.redisson.codec.AvroJacksonCodec.java

public AvroJacksonCodec() {
    super(new ObjectMapper(new AvroFactory()));
}

From source file:org.redisson.codec.AvroJacksonCodec.java

public AvroJacksonCodec(ClassLoader classLoader) {
    super(createObjectMapper(classLoader, new ObjectMapper(new AvroFactory())));
}