All Manuals > LispWorks User Guide and Reference Manual > 32 The COMM Package

NextPrevUpTopContentsIndex

async-io-state-discard

Function
Summary

Discards some bytes from the internal buffer in an async-io-state.

Package

comm

Signature

async-io-state-discard async-io-state discard => unread-buffer-length

Arguments

async-io-state

An async-io-state.

discard

A positive integer.

Values

unread-buffer-length

A non-negative integer.

Description

The function async-io-state-discard discards the first discard bytes from the internal buffer in async-io-state. The rest of the buffer is preserved for future reading.

async-io-state-discard must only be called inside the scope of the callback of async-io-state-read-with-checking. Once async-io-state-discard has been called, the callback must not access the buffer again.

The return value unread-buffer-length is the remaining number of bytes in the buffer.

See also

async-io-state-read-with-checking
The Async-I/O-State API


LispWorks User Guide and Reference Manual - 20 Sep 2017

NextPrevUpTopContentsIndex