aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/testlib/test_runtime.cpp
diff options
context:
space:
mode:
authortobo <tobo@yandex-team.ru>2022-02-10 16:47:27 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:27 +0300
commit7fe839092527589b38f014d854c51565b3c1adfa (patch)
tree309e97022d3530044b712b8f71318c78faf7856e /library/cpp/actors/testlib/test_runtime.cpp
parentd0d68c395c10da4cb56a1c845504570a04d7893e (diff)
downloadydb-7fe839092527589b38f014d854c51565b3c1adfa.tar.gz
Restoring authorship annotation for <tobo@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/actors/testlib/test_runtime.cpp')
-rw-r--r--library/cpp/actors/testlib/test_runtime.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp
index 6fa25b9965..af7ea2e336 100644
--- a/library/cpp/actors/testlib/test_runtime.cpp
+++ b/library/cpp/actors/testlib/test_runtime.cpp
@@ -242,7 +242,7 @@ namespace NActors {
Y_UNUSED(Runtime);
}
- void Prepare(TActorSystem *actorSystem, volatile ui64 *currentTimestamp, volatile ui64 *currentMonotonic) override {
+ void Prepare(TActorSystem *actorSystem, volatile ui64 *currentTimestamp, volatile ui64 *currentMonotonic) override {
Y_UNUSED(actorSystem);
Node->ActorSystemTimestamp = currentTimestamp;
Node->ActorSystemMonotonic = currentMonotonic;
@@ -253,13 +253,13 @@ namespace NActors {
Y_UNUSED(scheduleReadersCount);
}
- void Start() override {
+ void Start() override {
}
- void PrepareStop() override {
+ void PrepareStop() override {
}
- void Stop() override {
+ void Stop() override {
}
private:
@@ -343,7 +343,7 @@ namespace NActors {
}
// for actorsystem
- bool Send(TAutoPtr<IEventHandle>& ev) override {
+ bool Send(TAutoPtr<IEventHandle>& ev) override {
TGuard<TMutex> guard(Runtime->Mutex);
bool verbose = (Runtime->CurrentDispatchContext ? !Runtime->CurrentDispatchContext->Options->Quiet : true) && VERBOSE;
if (Runtime->BlockedOutput.find(ev->Sender) != Runtime->BlockedOutput.end()) {
@@ -393,21 +393,21 @@ namespace NActors {
return true;
}
- void ScheduleActivation(ui32 activation) override {
+ void ScheduleActivation(ui32 activation) override {
Y_UNUSED(activation);
}
- void ScheduleActivationEx(ui32 activation, ui64 revolvingCounter) override {
+ void ScheduleActivationEx(ui32 activation, ui64 revolvingCounter) override {
Y_UNUSED(activation);
Y_UNUSED(revolvingCounter);
}
- TActorId Register(IActor *actor, TMailboxType::EType mailboxType, ui64 revolvingCounter,
+ TActorId Register(IActor *actor, TMailboxType::EType mailboxType, ui64 revolvingCounter,
const TActorId& parentId) override {
return Runtime->Register(actor, NodeIndex, PoolId, mailboxType, revolvingCounter, parentId);
}
- TActorId Register(IActor *actor, TMailboxHeader *mailbox, ui32 hint, const TActorId& parentId) override {
+ TActorId Register(IActor *actor, TMailboxHeader *mailbox, ui32 hint, const TActorId& parentId) override {
return Runtime->Register(actor, NodeIndex, PoolId, mailbox, hint, parentId);
}
@@ -418,13 +418,13 @@ namespace NActors {
Y_UNUSED(scheduleSz);
}
- void Start() override {
+ void Start() override {
}
- void PrepareStop() override {
+ void PrepareStop() override {
}
- void Shutdown() override {
+ void Shutdown() override {
}
bool Cleanup() override {
@@ -432,7 +432,7 @@ namespace NActors {
}
// generic
- TAffinity* Affinity() const override {
+ TAffinity* Affinity() const override {
Y_FAIL();
}