mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-12 10:55:46 +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
|
||||
|
||||
#include "base/logging.h"
|
||||
#include "core/fibers.h"
|
||||
#include "facade/reply_capture.h"
|
||||
#include "server/conn_context.h"
|
||||
|
||||
|
@ -20,8 +21,8 @@ class MultiCommandSquasher {
|
|||
}
|
||||
|
||||
private:
|
||||
using ReplyChan = ::util::fibers_ext::SimpleChannel<
|
||||
facade::CapturingReplyBuilder::Payload,
|
||||
using ReplyChan =
|
||||
dfly::SimpleChannel<facade::CapturingReplyBuilder::Payload,
|
||||
base::mpmc_bounded_queue<facade::CapturingReplyBuilder::Payload>>;
|
||||
|
||||
// Per-shard exection info.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue