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:
Roman Gershman 2023-03-31 13:33:20 +03:00 committed by GitHub
parent 9e6857024e
commit 0cbd5f0348
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 66 additions and 65 deletions

View file

@ -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) {