Example usage for java.io OutputStream subclass-usage

List of usage examples for java.io OutputStream subclass-usage

Introduction

In this page you can find the example usage for java.io OutputStream subclass-usage.

Usage

From source file org.apache.hadoop.fs.s3.S3OutputStream.java

@InterfaceAudience.Private
@InterfaceStability.Unstable
@Deprecated
class S3OutputStream extends OutputStream {

    private Configuration conf;

From source file org.browsermob.proxy.jetty.util.ByteBufferOutputStream.java

/** ByteBuffer OutputStream.
 * This stream is similar to the java.io.ByteArrayOutputStream,
 * except that it maintains a reserve of bytes at the start of the
 * buffer and allows efficient prepending of data.
 *
 * @version $Revision: 1.18 $

From source file net.lightbody.bmp.proxy.jetty.util.ByteBufferOutputStream.java

/** ByteBuffer OutputStream.
 * This stream is similar to the java.io.ByteArrayOutputStream,
 * except that it maintains a reserve of bytes at the start of the
 * buffer and allows efficient prepending of data.
 *
 * @version $Revision: 1.18 $

From source file org.crazydog.util.spring.FastByteArrayOutputStream.java

/**
 * A speedy alternative to {@link java.io.ByteArrayOutputStream}. Note that
 * this variant does <i>not</i> extend {@code ByteArrayOutputStream}, unlike
 * its sibling {@link ResizableByteArrayOutputStream}.
 * <p>
 * <p>Unlike {@link java.io.ByteArrayOutputStream}, this implementation is backed

From source file com.nmote.io.ByteArrayOutputStream.java

/**
 * This class implements an output stream in which the data is written into a
 * byte array. The buffer automatically grows as data is written to it.
 * <p>
 * The data can be retrieved using <code>toByteArray()</code> and
 * <code>toString()</code>.

From source file org.apache.camel.converter.stream.CachedOutputStream.java

/**
 * This output stream will store the content into a File if the stream context size is exceed the
 * THRESHOLD which's default value is 64K. The temp file will store in the temp directory, you 
 * can configure it by setting the TEMP_DIR property. If you don't set the TEMP_DIR property,
 * it will choose the directory which is set by the system property of "java.io.tmpdir".
 * You can get a cached input stream of this stream. The temp file which is created with this 

From source file org.apache.tajo.storage.s3.S3OutputStream.java

@InterfaceAudience.Private
@InterfaceStability.Unstable
class S3OutputStream extends OutputStream {

    private Configuration conf;

From source file tachyon.underfs.oss.OSSOutputStream.java

/**
 * A stream for writing a file into OSS. The data will be persisted to a temporary directory on the
 * local disk and copied as a complete file when the {@link #close()} method is called.
 */
@NotThreadSafe
public final class OSSOutputStream extends OutputStream {

From source file com.ibm.xsp.webdav.domino.DominoOutputStream.java

/**
 * @author Stephan H. Wissel
 * 
 */
public abstract class DominoOutputStream extends OutputStream {
    /**

From source file com.adito.vfs.VFSOutputStream.java

/**
 * <p>A specialized {@link OutputStream} to write to {@link VFSResource}s.</p>
 * 
 * <p>When writing to this {@link OutputStream} the data will be written to
 * a temporary file. This temporary file will be moved to its final destination
 * (the original file identifying the resource) when the {@link #close()}