Get the executor associated with the object. * This function may be used to obtain the executor object that the stream * uses to dispatch handlers for asynchronous operations. * * @return A copy of the executor that stream will use to dispatch handlers. */
| 189 | * @return A copy of the executor that stream will use to dispatch handlers. |
| 190 | */ |
| 191 | executor_type get_executor() ASIO_NOEXCEPT |
| 192 | { |
| 193 | return next_layer_.lowest_layer().get_executor(); |
| 194 | } |
| 195 | |
| 196 | /// Get the underlying implementation in the native type. |
| 197 | /** |
no outgoing calls
no test coverage detected