blob: 0a8101bc2c87016694d8303081ff06fc7786e215 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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);
}
}
|