List of usage examples for java.io OutputStream subclass-usage
From source file Base64EncoderStream.java
/**
* This class implements a Base64 Character encoder as specified in RFC1113.
* Unlike some other encoding schemes there is nothing in this encoding
* that indicates where a buffer starts or ends.
*
* This means that the encoded text will simply start with the first line
From source file org.quickserver.util.io.ByteBufferOutputStream.java
/**
* This is an OutputStream constructed from list of ByteBuffers. This is
* used in non-blocking mode.
* @since 1.4.5
* @author Akshathkumar Shetty
*/
From source file org.eclipse.paho.client.mqttv3.internal.wire.MqttOutputStream.java
/** * An <code>MqttOutputStream</code> lets applications write instances of * <code>MqttWireMessage</code>. */ public class MqttOutputStream extends OutputStream { private static final String CLASS_NAME = MqttOutputStream.class.getName();
From source file nl.frankkie.ontp.CLog.java
/**
* CUSTOM LOGGER
*
* Deze class zo gemaakt,
* dat hij zoveel mogelijk lijkt op het bestaande Log-systeem,
* en dat hij op dezelfde manier kan worden aangeroepen.
From source file fm.last.moji.impl.FileUploadOutputStream.java
class FileUploadOutputStream extends OutputStream { private static final Logger log = LoggerFactory.getLogger(FileUploadOutputStream.class); private static final int CHUNK_LENGTH = 4096; private final Destination destination;
From source file org.apache.hadoop.hdfs.server.namenode.bookkeeper.BookKeeperJournalOutputStream.java
/**
* Wrapper OutputStream for that {@link EditsDoubleBuffer} in
* {@link BookKeeperEditLogOutputStream} will flush to. This is a
* re-write of BookKeeper's own LedgerOutputStream which ensures that
* any exception thrown (e.g., if we are unable to confirm that we've
* written to a quorum of bookies) is propagated back to the caller.
From source file com.microsoft.tfs.util.temp.FastTempOutputStream.java
/**
* <p>
* An {@link OutputStream} that writes bytes to temporary storage and can be
* read from multiple times before being disposed. Internally the class first
* writes to heap memory, then switches to a temporary file once a threshold is
* exceeded. The temporary file is obtained through {@link TempStorageService}
From source file nl.frankkie.bronylivewallpaper.CLog.java
/**
* CUSTOM LOGGER
*
* Deze class zo gemaakt,
* dat hij zoveel mogelijk lijkt op het bestaande Log-systeem,
* en dat hij op dezelfde manier kan worden aangeroepen.
From source file org.apache.hadoop.fs.ceph.CephOutputStream.java
/** * <p> * An {@link OutputStream} for a CephFileSystem and corresponding * Ceph instance. */ public class CephOutputStream extends OutputStream {
From source file Base64EncodeStream.java
/**
* This class implements a Base64 Character encoder as specified in RFC1113.
* Unlike some other encoding schemes there is nothing in this encoding
* that indicates where a buffer starts or ends.
*
* This means that the encoded text will simply start with the first line