38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
/* Copyright (c) 2018-2023 Marcelo Zimbres Silva (mzimbres@gmail.com)
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0. (See
|
|
* accompanying file LICENSE.txt)
|
|
*/
|
|
|
|
#ifndef BOOST_REDIS_ADAPTER_IGNORE_HPP
|
|
#define BOOST_REDIS_ADAPTER_IGNORE_HPP
|
|
|
|
#include <boost/redis/resp3/node.hpp>
|
|
#include <boost/redis/error.hpp>
|
|
#include <boost/system/error_code.hpp>
|
|
#include <string>
|
|
|
|
namespace boost::redis::adapter
|
|
{
|
|
|
|
/** @brief An adapter that ignores responses
|
|
* @ingroup high-level-api
|
|
*
|
|
* RESP3 errors won't be ignored.
|
|
*/
|
|
struct ignore {
|
|
void operator()(resp3::basic_node<std::string_view> const& nd, system::error_code& ec)
|
|
{
|
|
switch (nd.data_type) {
|
|
case resp3::type::simple_error: ec = redis::error::resp3_simple_error; break;
|
|
case resp3::type::blob_error: ec = redis::error::resp3_blob_error; break;
|
|
case resp3::type::null: ec = redis::error::resp3_null; break;
|
|
default:;
|
|
}
|
|
}
|
|
};
|
|
|
|
} // boost::redis::adapter
|
|
|
|
#endif // BOOST_REDIS_ADAPTER_IGNORE_HPP
|