summaryrefslogtreecommitdiff
path: root/lib/infrastructure/threading/Timer.cs
blob: 56d4d517db202d761f6cd32ab9f34f93c421ef28 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace jive.infrastructure.threading
{
  public interface Timer : IDisposable
  {
    void start_notifying(TimerClient client_to_be_notified, TimeSpan span);
    void stop_notifying(TimerClient client_to_stop_notifying);
  }
}