summaryrefslogtreecommitdiff
path: root/lib/infrastructure/threading/IWorkerThread.cs
blob: 3313ba614a71fe92d8a51c729edd941a4417ecf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.ComponentModel;

namespace gorilla.infrastructure.threading
{
    public interface IWorkerThread : IDisposable
    {
        event DoWorkEventHandler DoWork;
        event EventHandler Disposed;
        void begin();
    }
}