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); } }