Class ExposedBufferedOutputStream

All Implemented Interfaces:
Closeable, Flushable, AutoCloseable

public class ExposedBufferedOutputStream extends BufferedOutputStream
Version:
$Id: ExposedBufferedOutputStream.java,v 1.1 2005/07/25 15:53:36 belaban Exp $
Author:
Bela Ban
  • Constructor Details

    • ExposedBufferedOutputStream

      public ExposedBufferedOutputStream(OutputStream out)
      Creates a new buffered output stream to write data to the specified underlying output stream.
      Parameters:
      out - the underlying output stream.
    • ExposedBufferedOutputStream

      public ExposedBufferedOutputStream(OutputStream out, int size)
      Creates a new buffered output stream to write data to the specified underlying output stream with the specified buffer size.
      Parameters:
      out - the underlying output stream.
      size - the buffer size.
      Throws:
      IllegalArgumentException - if size <= 0.
  • Method Details

    • reset

      public void reset(int size)