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

com.adgear.anoa.write.AvroBatchWriteConsumer Maven / Gradle / Ivy

Go to download

Core classes for Anoa library, which aims to be a safe, convenient and fast record de/serialization wrapper for the Avro, Thrift and Jackson libraries, using the functional idioms of Java 8. The anoa-core module tries to keep upstream dependencies to a minimum.

There is a newer version: 3.1.2
Show newest version
package com.adgear.anoa.write;

import org.apache.avro.file.DataFileWriter;
import org.apache.avro.generic.IndexedRecord;

import java.io.IOException;

class AvroBatchWriteConsumer implements WriteConsumer {

  final DataFileWriter dataFileWriter;

  AvroBatchWriteConsumer(DataFileWriter dataFileWriter) {
    this.dataFileWriter = dataFileWriter;
  }

  @Override
  public void acceptChecked(R record) throws IOException {
    dataFileWriter.append(record);
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy