summaryrefslogtreecommitdiff
path: root/lib/infrastructure/threading/ThreadingExtensions.cs
blob: 6b123b3bb0a55b953efc92476a2da41301c3848e (plain)
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);
        }
    }
}