Construct with executor. * This constructor creates a basic_resolver. * * @param ex The I/O executor that the resolver will use, by default, to * dispatch handlers for any asynchronous operations performed on the * resolver. */
| 99 | * resolver. |
| 100 | */ |
| 101 | explicit basic_resolver(const executor_type& ex) |
| 102 | : impl_(0, ex) |
| 103 | { |
| 104 | } |
| 105 | |
| 106 | /// Construct with execution context. |
| 107 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected