Class TableWriter

java.lang.Object
org.gridgain.internal.sql.copy.table.TableWriter
All Implemented Interfaces:
AutoCloseable, Writer

public class TableWriter extends Object implements Writer
A writer that writes data to an ignite table.
  • Constructor Summary

    Constructors
    Constructor
    Description
    TableWriter(org.apache.ignite.internal.table.distributed.TableManager mgr, org.apache.ignite.internal.sql.engine.prepare.copy.CopyLocationTable location, List<org.apache.ignite.internal.schema.Column> columns, int batchSize, ExecutorService executor)
    Constructor.
  • Method Summary

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

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • TableWriter

      public TableWriter(org.apache.ignite.internal.table.distributed.TableManager mgr, org.apache.ignite.internal.sql.engine.prepare.copy.CopyLocationTable location, List<org.apache.ignite.internal.schema.Column> columns, int batchSize, ExecutorService executor)
      Constructor.
  • Method Details