main
 1namespace jive
 2{
 3  static public class ThreadingExtensions
 4  {
 5    static public BackgroundThread on_a_background_thread(this DisposableCommand command)
 6    {
 7      return new WorkderBackgroundThread(command);
 8    }
 9  }
10}