BufferedOutput.this

Construct a Buffer upon the provided input stream.

  1. this(OutputStream stream, void delegate() flush_notifier)
    class BufferedOutput
    this
    (
    OutputStream stream
    ,
    scope void delegate
    ()
    flush_notifier = null
    )
  2. this(OutputStream stream, size_t capacity, void delegate() flush_notifier)

Parameters

stream OutputStream

An input stream.

flush_notifier void delegate
()

user specified delegate called after the content of the buffer has been flushed to upstream output.

Meta