Boost.Redis 1.4.2
A redis client library
Loading...
Searching...
No Matches
operation.hpp
1/* Copyright (c) 2018-2023 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 {
20 resolve,
22 connect,
26 exec,
28 run,
30 receive,
36 all,
37};
38
39} // boost::redis
40
41#endif // BOOST_REDIS_OPERATION_HPP
operation
Connection operations that can be cancelled.
Definition: operation.hpp:18
@ 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.