Casts a done Writer
to a different input type. A Writer
in the done
state can have any input type.
Casts an errored Writer
to different input and output types. A Writer
in the error state can have any input type, and any output type.
Returns the written result. Only guaranteed to return a result when in the done state.
Returns a Writer
that represents the continuation of how to write the
given input
object.
Returns a Writer
continuation whose behavior may be altered by the given
out-of-band condition
.
Returns true
when pull is able to produce Output
. i.e. this
Writer
is in the cont state.
Returns true
when writing has terminated successfully, and bind will
return the written result. i.e. this Writer
is in the done state.
Returns true
when writing has terminated in failure, and trap will
return the write error. i.e. this Writer
is in the error state.
Incrementally writes as much output
as possible, and returns another
Writer
that represents the continuation of how to write additional
Output
. If output
enters the done state, pull
must return a
terminated Writer
, i.e. a Writer
in the done state, or in the
error state. The given output
is only guaranteed to be valid for the
duration of the method call; references to output
must not be stored.
Returns the write error. Only guaranteed to return an error when in the error state.
Returns a Writer
in the error state that trap
s the given
write error
.
Continuation of how to write subsequent Output tokens to a stream.
Writer
enables efficient, interruptible writing of network protocols and data formats, without intermediate buffering.Output tokens
A
Writer
writes tokens to anOutput
writer. Output tokens are modeled as primitive numbers, commonly representing Unicode code points, or raw octets. EachWriter
implementation specifies the semantic type of output tokens it produces.Writer states
A
Writer
is always in one of three states: cont_​inue, _done, or error. The cont state indicates that pull is ready to produceOutput
; the done state indicates that writing terminated successfully, and that bind will return the written result; the error state indicates that writing terminated in failure, and that trap will return the write error.Writer
subclasses default to the cont state.Feeding input
The feed method returns a
Writer
that represents the continuation of how to write the given input object to subsequentOutput
writers.feed
can be used to specify an initial object to write, or to change the object to be written.Pulling output
The pull method incrementally writes as much
Output
as it can, before returning anotherWriter
that represents the continuation of how to write additionalOutput
. TheOutput
passed topull
is only guaranteed to be valid for the duration of the method call; references to the providedOutput
instance must not be stored.Writer results
A
Writer
produces a written result of typeO
, obtained via the bind method.bind
is only guaranteed to return a result when in the done state; thoughbind
may optionally make available partial results in other states. A failedWriter
provides a write error via the trap method.trap
is only guaranteed to return an error when in the error state.Continuations
A
Writer
instance represents a continuation of how to write remainingOutput
. Rather than writing a complete output in one go, aWriter
takes anOutput
chunk and returns anotherWriter
instance that knows how to write subsequentOutput
chunks. This enables non-blocking, incremental writing that can be interrupted whenever anOutput
writer runs out of space. AWriter
terminates by returning a continuation in either the done state, or the error state. Writer.done returns aWriter
in the done state. Writer.error returns aWriter
in the error state.Forking
The fork method passes an out-of-band condition to a
Writer
, yielding aWriter
continuation whose behavior may be altered by the given condition. For example, a consoleWriter
might support afork
condition that changes the color and style of printed text. The types of conditions accepted byfork
, and their intended semantics, are implementation defined.