fix: use fibers.h alias for SimpleChannel (#1059)

This commit is contained in:
Roy Jacobson 2023-04-09 18:08:07 +03:00 committed by GitHub
parent 71a4c6dd45
commit efe18ef19d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
#pragma once
#include "base/logging.h"
#include "core/fibers.h"
#include "facade/reply_capture.h"
#include "server/conn_context.h"
@ -20,9 +21,9 @@ class MultiCommandSquasher {
}
private:
using ReplyChan = ::util::fibers_ext::SimpleChannel<
facade::CapturingReplyBuilder::Payload,
base::mpmc_bounded_queue<facade::CapturingReplyBuilder::Payload>>;
using ReplyChan =
dfly::SimpleChannel<facade::CapturingReplyBuilder::Payload,
base::mpmc_bounded_queue<facade::CapturingReplyBuilder::Payload>>;
// Per-shard exection info.
struct ShardExecInfo {