Exemplo n.º 1
0
 public static void Execute(INotificationProvider notifications, Type workerType, QueueMessage message, IQueueProvider provider)
 {
     notifications.OnWorkerStarted(message);
     new Thread(x => ExecuteAsync(notifications, workerType, message, provider)).Start();
 }