bitflag enum io.ReadOnlyStreamEvents
Overview
This enumeration contains codes of standard events that might
happen on a buffered stream object. The set of active events is accessible
via the m_activeEvents
field. More…
bitflag enum ReadOnlyStreamEvents { IoError, IncomingData, ReadBufferFull, };
Detailed Documentation
This enumeration contains codes of standard events that might
happen on a buffered stream object. The set of active events is accessible
via the m_activeEvents
field.
Enum Values
IoError
An IO error occured on the tream; detailed information about the
error is available at m_ioError
property.
IncomingData
More data is available on the tream; this data could be fetched
with read
method.
ReadBufferFull
The stream receive buffer is full; upcoming data may be dropped (depending on the underlying device represented by the file).