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

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