Loading...
Searching...
No Matches
operation.hpp
1/* Copyright (c) 2018-2024 Marcelo Zimbres Silva (mzimbres@gmail.com)
2 *
3 * Distributed under the Boost Software License, Version 1.0. (See
4 * accompanying file LICENSE.txt)
5 */
6
7#ifndef BOOST_REDIS_OPERATION_HPP
8#define BOOST_REDIS_OPERATION_HPP
9
10namespace boost::redis {
11
18enum class operation
19{
21 resolve,
23 connect,
27 exec,
29 run,
31 receive,
37 all,
38};
39
40} // namespace boost::redis
41
42#endif // BOOST_REDIS_OPERATION_HPP
operation
Connection operations that can be cancelled.
Definition operation.hpp:19
@ health_check
Health check operation.
@ ssl_handshake
SSL handshake operation.
@ exec
Refers to connection::async_exec operations.
@ resolve
Resolve operation.
@ reconnection
Cancels reconnection.
@ all
Refers to all operations.
@ run
Refers to connection::async_run operations.
@ connect
Connect operation.
@ receive
Refers to connection::async_receive operations.