boost::asio::basic_readable_pipe
Provides pipe functionality.
Synopsis
Declared in <boost/asio/basic_readable_pipe.hpp>
template<typename Executor = any_io_executor>
class basic_readable_pipe;
Types
Name |
Description |
Rebinds the pipe type to another executor. |
|
The type of the executor associated with the object. |
|
A basic_readable_pipe is always the lowest layer. |
|
Member Functions
Name |
Description |
|
Constructors |
|
Destroys the pipe. |
Assignment operators |
|
Start an asynchronous read. |
|
Cancel all asynchronous operations associated with the pipe. |
|
Close the pipe. |
|
Get the executor associated with the object. |
|
Determine whether the pipe is open. |
|
|
|
Get the native pipe representation. |
|
Read some data from the pipe. |
|
Non-Member Functions
Name |
Description |
Connect two pipe ends using an anonymous pipe. |
|
Connect two pipe ends using an anonymous pipe. |
Description
The basic_readable_pipe class provides a wrapper over pipe functionality.
Thread Safety
Distinct objects: Safe. Shared objects: Unsafe.
Created with MrDocs