Next: , Previous: Input stream methods, Up: Gray Streams


9.2.5 Output stream methods

These generic functions are used to implement subclasses of fundamental-output-stream:

— Generic Function: sb-gray:stream-clear-output non-stream

This is like cl:clear-output, but for Gray streams: clear the given output stream. The default method does nothing.

— Generic Function: sb-gray:stream-finish-output non-stream

Attempts to ensure that all output sent to the Stream has reached its destination, and only then returns false. Implements finish-output. The default method does nothing.

— Generic Function: sb-gray:stream-force-output non-stream

Attempts to force any buffered output to be sent. Implements force-output. The default method does nothing.

— Generic Function: sb-gray:stream-write-sequence stream seq &optional start end

This is like cl:write-sequence, but for Gray streams.