summaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/testlib/test_runtime.cpp
diff options
context:
space:
mode:
authorkruall <[email protected]>2023-01-12 22:56:40 +0300
committerkruall <[email protected]>2023-01-12 22:56:40 +0300
commitaf0ed98ed997e247080b5ea3e9db13fd6473f85d (patch)
treebd177165b4d3ea60b1d8b05124b005b90cbda2c0 /library/cpp/actors/testlib/test_runtime.cpp
parent64ad88ed8b9626982c209d3240309c27bf380400 (diff)
Refactor sending and registration methods,
Diffstat (limited to 'library/cpp/actors/testlib/test_runtime.cpp')
-rw-r--r--library/cpp/actors/testlib/test_runtime.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp
index 9a5759b98a1..9a4a1b7a2f5 100644
--- a/library/cpp/actors/testlib/test_runtime.cpp
+++ b/library/cpp/actors/testlib/test_runtime.cpp
@@ -361,7 +361,7 @@ namespace NActors {
}
// for actorsystem
- bool SendWithContinuousExecution(TAutoPtr<IEventHandle>& ev) override {
+ bool SpecificSend(TAutoPtr<IEventHandle>& ev) override {
return Send(ev);
}
@@ -419,6 +419,10 @@ namespace NActors {
Y_UNUSED(activation);
}
+ void SpecificScheduleActivation(ui32 activation) override {
+ Y_UNUSED(activation);
+ }
+
void ScheduleActivationEx(ui32 activation, ui64 revolvingCounter) override {
Y_UNUSED(activation);
Y_UNUSED(revolvingCounter);