6 #ifndef ASIOEXT_ASYNCRESULT_HPP 7 #define ASIOEXT_ASYNCRESULT_HPP 9 #include "asioext/detail/config.hpp" 11 #if ASIOEXT_HAS_PRAGMA_ONCE 15 #include "asioext/detail/asio_version.hpp" 17 #if defined(ASIOEXT_USE_BOOST_ASIO) 18 # include <boost/asio/async_result.hpp> 20 # include <asio/async_result.hpp> 23 #include <type_traits> 31 #if defined(ASIOEXT_IS_DOCUMENTATION) 32 # define ASIOEXT_INITFN_RESULT_TYPE void_or_deduced 33 #elif defined(ASIOEXT_USE_BOOST_ASIO) 34 # define ASIOEXT_INITFN_RESULT_TYPE BOOST_ASIO_INITFN_RESULT_TYPE 36 # define ASIOEXT_INITFN_RESULT_TYPE ASIO_INITFN_RESULT_TYPE 41 #if (ASIOEXT_ASIO_VERSION >= 101100) && !defined(ASIOEXT_IS_DOCUMENTATION) 42 using asio::async_result;
43 using asio::async_completion;
53 template <
typename CompletionToken,
typename Signature =
void>
57 typedef typename asio::handler_type<CompletionToken, Signature>::type
60 typedef typename asio::async_result<completion_handler_type>::type
78 asio::async_result<completion_handler_type> result_;
90 template <
typename CompletionToken,
typename Signature>
102 #if defined(ASIOEXT_HAS_MOVE) 104 : completion_handler(static_cast<typename
std::conditional<
107 , result(completion_handler)
112 : completion_handler(token)
113 , result(completion_handler)
117 explicit async_completion(
119 : completion_handler(token)
120 , result(completion_handler)
125 #if defined(ASIOEXT_HAS_MOVE) 128 completion_handler_type&, completion_handler_type
138 #if defined(ASIOEXT_HAS_ALIAS_TEMPLATES) 144 template <
typename CompletionToken,
typename Signature>
154 template <
typename CompletionToken,
typename Signature>
157 >::completion_handler_type;
async_result< typename std::decay< CompletionToken >::type, Signature > result_type
Definition: async_result.hpp:97
async_completion(CompletionToken &token)
Definition: async_result.hpp:103
typename async_result< typename std::decay< CompletionToken >::type, Signature >::completion_handler_type completion_handler_t
The real handler type to be used for the asynchronous operation.
Definition: async_result.hpp:157
typename async_result< typename std::decay< CompletionToken >::type, Signature >::return_type async_result_t
An initiating function's return type.
Definition: async_result.hpp:147
Definition: async_result.hpp:91
std::conditional< std::is_same< CompletionToken, completion_handler_type >::value, completion_handler_type &, completion_handler_type >::type completion_handler
Definition: async_result.hpp:129
result_type result
Definition: async_result.hpp:134
asio::async_result< completion_handler_type >::type return_type
Definition: async_result.hpp:61
async_result(completion_handler_type &h)
Construct an async result from a given handler.
Definition: async_result.hpp:64
asio::handler_type< CompletionToken, Signature >::type completion_handler_type
Definition: async_result.hpp:58
An interface for customising the behaviour of an initiating function.
Definition: async_result.hpp:54
result_type::completion_handler_type completion_handler_type
Definition: async_result.hpp:100