Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
complete_async_op (normal)

Completes an operation with a handle or an error, usually used when an operation was previously deferred.

Synopsis
void dispatcher::complete_async_op(size_t id, handle_ptr h, exception_ptr e = exception_ptr())
Parameters

Type

Concept

Name

Description

size_t

id

handle_ptr

h

exception_ptr

e

Header

#include <boost/afio/v2/afio.hpp>

Complexity

O(N) where N is the number of completions dependent on this op.

Exception Model

Should not throw any exception except for out of memory.


PrevUpHomeNext