diff options
author | kruall <[email protected]> | 2023-01-12 22:56:40 +0300 |
---|---|---|
committer | kruall <[email protected]> | 2023-01-12 22:56:40 +0300 |
commit | af0ed98ed997e247080b5ea3e9db13fd6473f85d (patch) | |
tree | bd177165b4d3ea60b1d8b05124b005b90cbda2c0 /library/cpp/actors/testlib/test_runtime.cpp | |
parent | 64ad88ed8b9626982c209d3240309c27bf380400 (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.cpp | 6 |
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); |