Example usage for java.io Flushable interface-usage

List of usage examples for java.io Flushable interface-usage

Introduction

In this page you can find the example usage for java.io Flushable interface-usage.

Usage

From source file com.eatnumber1.util.collections.persistent.PersistentMap.java

/**
 * @author Russell Harmon
 * @since Jul 14, 2009
 */
public interface PersistentMap<K, V> extends IterableMap<K, V>, Closeable, Flushable {
}

From source file cz.hobrasoft.pdfmu.TextOutput.java

/**
 * Prints indented messages to a {@link PrintStream}
 *
 * <p>
 * The indentation level starts at 0 and can be changed using
 * {@link #indentMore} and {@link #indentLess}.

From source file org.apache.hadoop.fs.redfish.RedfishDataOutputStream.java

class RedfishDataOutputStream extends OutputStream implements Syncable, Closeable, Flushable {
    private long m_ofe;

    static {
        try {
            System.loadLibrary("hfishc");

From source file edu.usc.goffish.gofs.formats.gml.GMLWriter.java

final class GMLWriter implements Closeable, Flushable {

    private static final int DEFAULT_BUFFER_SIZE = 16384;

    private static final String TABULATOR = "  ";
    private static final String KEY_VALUE_SEPARATOR = " ";

From source file org.callimachusproject.io.CarOutputStream.java

public class CarOutputStream implements Closeable, Flushable {
    private final ZipArchiveOutputStream zipStream;
    private final Set<String> closed = new HashSet<String>();

    public CarOutputStream(OutputStream out) throws IOException {
        this.zipStream = new ZipArchiveOutputStream(out);

From source file org.openestate.io.core.CsvPrinter.java

/**
 * A general CSV printer, that is bound to a {@link CsvFormat} and writes CSV
 * data from {@link CsvRecord} objects.
 *
 * @param <Record>
 * the class used for a record, that is printed to a CSV file

From source file com.example.common.LibratoMetricWriter.java

/**
 * @author Dave Syer
 *
 */
public class LibratoMetricWriter implements MetricWriter, Flushable {

From source file com.blackducksoftware.bdio.io.BdioWriter.java

/**
 * A simple writer for producing a JSON formatted Bill of Materials from a source of node instances.
 *
 * @author jgustie
 */
public class BdioWriter implements Closeable, Flushable {

From source file org.kiji.schema.KijiSchemaTable.java

/**
 * The Kiji schema table, which contains the lookup table between schema IDs, hashes, and full
 * schemas.
 *
 * @see KijiMetaTable
 * @see KijiSystemTable

From source file com.moz.fiji.schema.FijiSchemaTable.java

/**
 * The Fiji schema table, which contains the lookup table between schema IDs, hashes, and full
 * schemas.
 *
 * @see FijiMetaTable
 * @see FijiSystemTable