Construct a basic_stream_file without opening it. * This constructor initialises a file without opening it. The file needs to * be opened before data can be read from or or written to it. * * @param ex The I/O executor that the file will use, by default, to * dispatch handlers for any asynchronous operations performed on the file. */
| 91 | * dispatch handlers for any asynchronous operations performed on the file. |
| 92 | */ |
| 93 | explicit basic_stream_file(const executor_type& ex) |
| 94 | : basic_file<Executor>(ex) |
| 95 | { |
| 96 | this->impl_.get_service().set_is_stream( |
| 97 | this->impl_.get_implementation(), true); |
| 98 | } |
| 99 | |
| 100 | /// Construct a basic_stream_file without opening it. |
| 101 | /** |
nothing calls this directly
no test coverage detected