|
|
Close ()
|
/** Closes the output. See Open() */
|
|
|
Flush ()
|
/** Flushes data to the output location. What data is flushed depends on the implementation */
|
|
|
Open ()
|
/** Opens the writer for output. Open/Close allows us to write the same message multiple
times without requiring a new writer each time. */
|
|
|
Write (character)
|
/** Write data to/from the message
@param character Data to write */
|
|
|
Write (longchar)
|
/** Write data to/from the message
@param longchar Data to write */
|
|
|
Write (handle)
|
/** Write data to/from the message
@param handle Data to write */
|
|
|
Write (memptr)
|
/** Write data to/from the message
@param memptr Data to write */
|
|
|
Write (Object)
|
/** Write data to/from the message
@param Object Data to write */
|