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

org.ssf4j.avro.binary.AvroBinarySerializer Maven / Gradle / Ivy

package org.ssf4j.avro.binary;

import java.io.IOException;
import java.io.OutputStream;

import org.apache.avro.Schema;
import org.apache.avro.io.Encoder;
import org.apache.avro.io.EncoderFactory;
import org.apache.avro.specific.SpecificDatumWriter;
import org.ssf4j.Serializer;

public class AvroBinarySerializer implements Serializer {
	
	protected OutputStream out;
	protected Schema schema;
	protected Encoder enc;
	
	public AvroBinarySerializer(Schema schema, OutputStream out) throws IOException {
		this.schema = schema;
		this.out = out;
		enc = EncoderFactory.get().binaryEncoder(out, null);
	}

	@Override
	public void flush() throws IOException {
		enc.flush();
	}

	@Override
	public void close() throws IOException {
		flush();
		out.close();
	}

	@Override
	public void write(T object) throws IOException {
		new SpecificDatumWriter(schema).write(object, enc);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy