FileWriteChannel

IO channel via File objects.

Useful when e.g. communicating over pipes.

Constructors

this
this(File out__)
Undocumented in source.

Members

Functions

closeWrite
void closeWrite()
Undocumented in source. Be warned that the author may not have intended to support it.
destroy
void destroy()
Undocumented in source. Be warned that the author may not have intended to support it.
flush
void flush()
Undocumented in source. Be warned that the author may not have intended to support it.
write
void write(const(ubyte)[] data)

Write data to the output channel.

Inherited Members

From WriteChannel

write
void write(const(ubyte)[] data)

Writes as much data as possible to the output.

flush
void flush()

Flush the output.

destroy
void destroy()

Destroy the channel.

closeWrite
void closeWrite()

Close the write channel.

Meta