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

org.ebay.datameta.dom.SerialDataTarget Maven / Gradle / Ivy

Go to download

Classes needed for DataMeta DOM functionality in JVM; with Java, Scala, Clojure, JRuby and other platforms running on a JVM.

There is a newer version: 1.0.3
Show newest version
package org.ebay.datameta.dom;

/**
 * Generic serial data target (destination, sink) for structured strong-typed table-oriented data,
 * accepts one record after another.
 * No reposition (rewind), no random access.
 * Should work the same for dynamic or partial dynamic schemas if the implementation supports it.
 *
 * @author Michael Bergens
 * @param  the data type to save into this data target
 */
public interface SerialDataTarget {
    void save(T what);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy