Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

windows::basic_stream_handle::rebind_executor::other

The handle type when rebound to the specified executor.

typedef basic_stream_handle< Executor1 > other;
Types

Name

Description

rebind_executor

Rebinds the handle type to another executor.

executor_type

The type of the executor associated with the object.

lowest_layer_type

An overlapped_handle is always the lowest layer.

native_handle_type

The native representation of a handle.

Member Functions

Name

Description

assign

Assign an existing native handle to the handle.

async_read_some

Start an asynchronous read.

async_write_some

Start an asynchronous write.

basic_stream_handle

Construct a stream handle without opening it.

Construct a stream handle on an existing native handle.

Move-construct a stream handle from another.

cancel

Cancel all asynchronous operations associated with the handle.

close

Close the handle.

get_executor

Get the executor associated with the object.

is_open

Determine whether the handle is open.

lowest_layer

Get a reference to the lowest layer.

Get a const reference to the lowest layer.

native_handle

Get the native handle representation.

operator=

Move-assign a stream handle from another.

read_some

Read some data from the handle.

write_some

Write some data to the handle.

Protected Data Members

Name

Description

impl_

The windows::basic_stream_handle class provides asynchronous and blocking stream-oriented handle functionality.

Thread Safety

Distinct objects: Safe.

Shared objects: Unsafe.

Requirements

Header: boost/asio/windows/basic_stream_handle.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext