Type io:JavaWriterStream

extends io:Stream
Constructors:
io:JavaWriterStream(jio:Writer stream)
io:JavaWriterStream(jio:Writer stream)
io:JavaWriterStream(jio:OutputStream stream)
Functions:
close()
Functions inherited from io:Stream:
binary(Node yes)
Control if this stream should read/write in binary or character mode.
binary()
Determine whether this stream reads/writes in binary or character mode.
encoding(Node type)
Set the character encoding this stream should use to read/write in character mode.
encoding()
Get the character encoding this Stream should use when reading/writing in character mode.
parse()
read()
Read the entire content of this stream.
Same as: read(0)
read(Number limit)
Read a maximum of limit bytes or characters (depending on whether the stream is in binary or character mode) from this stream.
Parameter limit: The maximum number of bytes or characters, or 0 for unlimited.
write(Node data)
write(String data)
write(Node data, Number limit)
write(String data, Number limit)
Write a maximum of limit bytes or characters from the stream.