main
1using System;
2
3namespace jive
4{
5  public interface ITimerFactory
6  {
7    System.Timers.Timer create_for(TimeSpan span);
8  }
9}