summaryrefslogtreecommitdiff
path: root/lib/ThreadingExtensions.cs
blob: 42fba99754e9f3c8aec2bbafa80e7424283ef4eb (plain)
1
2
3
4
5
6
7
8
9
10
namespace jive
{
  static public class ThreadingExtensions
  {
    static public BackgroundThread on_a_background_thread(this DisposableCommand command)
    {
      return new WorkderBackgroundThread(command);
    }
  }
}