![]() |
Home | Libraries | People | FAQ | More |
Notifies the MySQL server that the client wants to end the session and shutdowns SSL.
template<
class CompletionToken>
auto
async_quit(
diagnostics
& diag,
CompletionToken&& token);
Sends a quit request to the MySQL server. If the connection is using SSL, this function will also perform the SSL shutdown. You should close the underlying physical connection after calling this function.
If the Stream
template
parameter fulfills the SocketConnection
requirements, use connection::close
instead of this function,
as it also takes care of closing the underlying stream.
The handler signature for this operation is void(boost::mysql::error_code)
.
Intermediate completion handlers, as well as the final handler, are executed
using token
's associated
executor, or this->get_executor()
if the token doesn't have an associated executor.
If the final handler has an associated immediate executor, and the operation
completes immediately, the final handler is dispatched to it. Otherwise,
the final handler is called as if it was submitted using asio::post
, and is never be called inline
from within this function.