Provides stream-oriented descriptor functionality.
class stream_descriptor : public posix::descriptor
Name |
Description |
---|---|
IO control command to get the amount of data that can be read without blocking. |
|
The type of the executor associated with the object. |
|
A descriptor is always the lowest layer. |
|
The native representation of a descriptor. |
|
Wait types. |
Name |
Description |
---|---|
Assign an existing native descriptor to the descriptor. |
|
Start an asynchronous read. |
|
Asynchronously wait for the descriptor to become ready to read, ready to write, or to have pending error conditions. |
|
Start an asynchronous write. |
|
Cancel all asynchronous operations associated with the descriptor. |
|
Close the descriptor. |
|
Get the executor associated with the object. |
|
(Deprecated: Use get_executor().) Get the io_context associated with the object. |
|
(Deprecated: Use get_executor().) Get the io_context associated with the object. |
|
Perform an IO control command on the descriptor. |
|
Determine whether the descriptor is open. |
|
Get a reference to the lowest layer. |
|
Get the native descriptor representation. |
|
Gets the non-blocking mode of the native descriptor implementation.
|
|
Gets the non-blocking mode of the descriptor. |
|
Move-assign a stream_descriptor from another. |
|
Read some data from the descriptor. |
|
Release ownership of the native descriptor implementation. |
|
Construct a stream_descriptor without opening it. |
|
Wait for the descriptor to become ready to read, ready to write, or to have pending error conditions. |
|
Write some data to the descriptor. |
The posix::stream_descriptor
class template provides asynchronous and blocking stream-oriented descriptor
functionality.
Distinct objects: Safe.
Shared objects: Unsafe.
Header: asio/posix/stream_descriptor.hpp
Convenience header: asio.hpp