Interface Writer

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
CsvWriter, IcebergParquetWriter, IcebergWriter, TableWriter

public interface Writer extends AutoCloseable
Generic interface for writing data to a destination.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    write(List<?> item)
    Writes the given item to the write destination.

    Methods inherited from interface java.lang.AutoCloseable

    close
  • Method Details