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