mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-12 02:45:45 +02:00
fix: use fibers.h alias for SimpleChannel (#1059)
This commit is contained in:
parent
71a4c6dd45
commit
efe18ef19d
1 changed files with 4 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "base/logging.h"
|
#include "base/logging.h"
|
||||||
|
#include "core/fibers.h"
|
||||||
#include "facade/reply_capture.h"
|
#include "facade/reply_capture.h"
|
||||||
#include "server/conn_context.h"
|
#include "server/conn_context.h"
|
||||||
|
|
||||||
|
@ -20,9 +21,9 @@ class MultiCommandSquasher {
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
using ReplyChan = ::util::fibers_ext::SimpleChannel<
|
using ReplyChan =
|
||||||
facade::CapturingReplyBuilder::Payload,
|
dfly::SimpleChannel<facade::CapturingReplyBuilder::Payload,
|
||||||
base::mpmc_bounded_queue<facade::CapturingReplyBuilder::Payload>>;
|
base::mpmc_bounded_queue<facade::CapturingReplyBuilder::Payload>>;
|
||||||
|
|
||||||
// Per-shard exection info.
|
// Per-shard exection info.
|
||||||
struct ShardExecInfo {
|
struct ShardExecInfo {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue