Interface TupleWriter

All Superinterfaces:
AutoCloseable, Closeable

public interface TupleWriter extends Closeable

Stripped back interface for writing tuples out, presumably to some sort of underlying output stream.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Remove the output that this writer may have created
    void
    write(Tuple tuple)
    Write a Tuple to the underlying stream.

    Methods inherited from interface java.io.Closeable

    close
  • Method Details