summaryrefslogtreecommitdiff
path: root/lib/infrastructure/threading/ITimerFactory.cs
blob: 397bbef50531653a73d0e0dea56d7b1c75b018a7 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace gorilla.infrastructure.threading
{
    public interface ITimerFactory
    {
        System.Timers.Timer create_for(TimeSpan span);
    }
}