2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-09 23:32:35 +00:00

Removes double and push adapter types.

This commit is contained in:
Marcelo Zimbres
2021-10-03 20:10:40 +02:00
parent b26389765c
commit 1aec94b827
9 changed files with 59 additions and 70 deletions

View File

@@ -32,7 +32,7 @@ example(net::ip::tcp::socket& socket,
for (;;) {
auto const t = co_await cs.async_consume(socket, requests, resp, net::use_awaitable);
if (t == resp3::type::flat_push) {
if (t == resp3::type::push) {
std::cout << "Event: " << "(" << t << ")" << std::endl;
continue;
}