List of usage examples for java.io FilterOutputStream subclass-usage
From source file org.apache.brooklyn.util.stream.LoggingOutputStream.java
/**
* Wraps another output stream, intercepting the writes to log it.
*
* This is <em>not</em> thread safe. It assumes that calls like write, flush and close
* will be done by the same thread.
*/
From source file org.apache.tez.engine.common.sort.impl.IFileOutputStream.java
/**
* A Checksum output stream.
* Checksum for the contents of the file is calculated and
* appended to the end of the file on close of the stream.
* Used for IFiles
*/
From source file ASCII85OutputStream.java
/** * This class applies a ASCII85 encoding to the stream. * * @version $Id: ASCII85OutputStream.java 426584 2006-07-28 16:01:47Z jeremias $ */ public class ASCII85OutputStream extends FilterOutputStream implements ASCII85Constants {
From source file RolloverFileOutputStream.java
/** * RolloverFileOutputStream * * @author Greg Wilkins */ public class RolloverFileOutputStream extends FilterOutputStream {
From source file RolloverFileOutputStream.java
/** * RolloverFileOutputStream * * @author Greg Wilkins */ public class RolloverFileOutputStream extends FilterOutputStream {
From source file org.jvnet.hudson.crypto.SignatureOutputStream.java
/** * @author Kohsuke Kawaguchi */ public class SignatureOutputStream extends FilterOutputStream { private final Signature sig;
From source file Base64Encoder.java
/**
* A class to encode Base64 streams and strings. See RFC 1521 section 5.2 for
* details of the Base64 algorithm.
* <p>
* This class can be used for encoding strings: <blockquote>
*
From source file BASE64EncoderStream.java
/**
* This class implements a BASE64 encoder. It is implemented as
* a FilterOutputStream, so one can just wrap this class around
* any output stream and write bytes into this filter. The encoding
* is done as the bytes are written out.
*
From source file ExtraDotOutputStream.java
/** * Adds extra dot if dot occurs in message body at beginning of line (according to RFC1939) * Compare also org.apache.james.smtpserver.SMTPInputStream */ public class ExtraDotOutputStream extends FilterOutputStream {
From source file GenericServer.java
class ServiceOutputStream extends FilterOutputStream { public ServiceOutputStream(OutputStream out) { super(out); } }