Skip to content

Commit

Permalink
Add ActorBase lifecycle flow unit tests (#7128)
Browse files Browse the repository at this point in the history
* Add ActorBase lifecycle flow unit test

* Cleanup code

---------

Co-authored-by: Aaron Stannard <aaron@petabridge.com>
  • Loading branch information
Arkatufus and Aaronontheweb authored Jul 11, 2024
1 parent 8843a21 commit 7fb0c2b
Show file tree
Hide file tree
Showing 5 changed files with 430 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1177,6 +1177,7 @@ namespace Akka.Actor
}
public interface ITimerScheduler
{
System.Collections.Generic.IReadOnlyCollection<object> ActiveTimers { get; }
void Cancel(object key);
void CancelAll();
bool IsTimerActive(object key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,7 @@ namespace Akka.Actor
}
public interface ITimerScheduler
{
System.Collections.Generic.IReadOnlyCollection<object> ActiveTimers { get; }
void Cancel(object key);
void CancelAll();
bool IsTimerActive(object key);
Expand Down
Loading

0 comments on commit 7fb0c2b

Please sign in to comment.