asio C++ library

PrevUpHomeNext
ip::basic_resolver::async_resolve (6 of 6 overloads)

Asynchronously perform reverse resolution of an endpoint to a list of entries.

template<
    typename ResolveToken = DEFAULT>
DEDUCED async_resolve(
    const endpoint_type & e,
    ResolveToken && token = DEFAULT);

This function is used to asynchronously resolve an endpoint into a list of endpoint entries. It is an initiating function for an asynchronous operation, and always returns immediately.

Parameters

e

An endpoint object that determines what endpoints will be returned.

token

The completion token that will be used to produce a completion handler, which will be called when the resolve completes. Potential completion tokens include use_future, use_awaitable, yield_context, or a function object with the correct completion signature. The function signature of the completion handler must be:

void handler(
  const asio::error_code& error, // Result of operation.
  resolver::results_type results // Resolved endpoints as a range.
);

Regardless of whether the asynchronous operation completes immediately or not, the completion handler will not be invoked from within this function. On immediate completion, invocation of the handler will be performed in a manner equivalent to using post.

A successful resolve operation is guaranteed to pass a non-empty range to the handler.

Completion Signature
void(asio::error_code, results_type)

PrevUpHomeNext