Construct a basic_writable_pipe without opening it. * This constructor creates a pipe without opening it. * * @param ex The I/O executor that the pipe will use, by default, to dispatch * handlers for any asynchronous operations performed on the pipe. */
| 97 | * handlers for any asynchronous operations performed on the pipe. |
| 98 | */ |
| 99 | explicit basic_writable_pipe(const executor_type& ex) |
| 100 | : impl_(0, ex) |
| 101 | { |
| 102 | } |
| 103 | |
| 104 | /// Construct a basic_writable_pipe without opening it. |
| 105 | /** |
no test coverage detected