Skip to content

Instantly share code, notes, and snippets.

@anaisbetts
Created January 18, 2011 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anaisbetts/784072 to your computer and use it in GitHub Desktop.
Save anaisbetts/784072 to your computer and use it in GitHub Desktop.
public interface IScheduler
{
IDisposable Schedule(Action action);
IDisposable Schedule(Action action, TimeSpan dueTime);
DateTimeOffset Now { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment