mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
chore: remove fiber related names from the codebase (#1018)
Remove Boost.Fibers mentions and remove fibers_ext mentions. Done in preparation to switch to helio-native fb2 implementation. Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
parent
9e6857024e
commit
0cbd5f0348
27 changed files with 66 additions and 65 deletions
|
@ -5,9 +5,10 @@
|
|||
#include "server/journal/streamer.h"
|
||||
|
||||
namespace dfly {
|
||||
using namespace util;
|
||||
|
||||
void JournalStreamer::Start(io::Sink* dest) {
|
||||
write_fb_ = Fiber(&JournalStreamer::WriterFb, this, dest);
|
||||
write_fb_ = MakeFiber(&JournalStreamer::WriterFb, this, dest);
|
||||
journal_cb_id_ =
|
||||
journal_->RegisterOnChange([this](const journal::Entry& entry, bool allow_await) {
|
||||
if (entry.opcode == journal::Op::NOOP) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue