Skip to content

Commit

Permalink
API approval
Browse files Browse the repository at this point in the history
  • Loading branch information
zbynek001 committed May 9, 2019
1 parent e5d1adf commit afda608
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/core/Akka.API.Tests/CoreAPISpec.ApproveCore.approved.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2054,12 +2054,12 @@ namespace Akka.Actor.Scheduler
{
public interface ITimerScheduler
{
void Cancel(string key);
void Cancel(object key);
void CancelAll();
bool IsTimerActive(string key);
void StartPeriodicTimer(string key, object msg, System.TimeSpan interval);
void StartPeriodicTimer(string key, object msg, System.TimeSpan initialDelay, System.TimeSpan interval);
void StartSingleTimer(string key, object msg, System.TimeSpan timeout);
bool IsTimerActive(object key);
void StartPeriodicTimer(object key, object msg, System.TimeSpan interval);
void StartPeriodicTimer(object key, object msg, System.TimeSpan initialDelay, System.TimeSpan interval);
void StartSingleTimer(object key, object msg, System.TimeSpan timeout);
}
}
namespace Akka.Annotations
Expand Down

0 comments on commit afda608

Please sign in to comment.