1 2 3 4 5 6 7 8 9 10 11 12
using gorilla.utility; namespace gorilla.infrastructure.threading { static public class ThreadingExtensions { static public BackgroundThread on_a_background_thread(this DisposableCommand command) { return new WorkderBackgroundThread(command); } } }