main
 1using System;
 2
 3namespace jive
 4{
 5  public interface Timer : IDisposable
 6  {
 7    void start_notifying(TimerClient client_to_be_notified, TimeSpan span);
 8    void stop_notifying(TimerClient client_to_stop_notifying);
 9  }
10}