update upgrade process

This commit is contained in:
Luke Pulverenti
2016-02-03 15:52:45 -05:00
parent 4fc3753f64
commit fb2a320416
6 changed files with 76 additions and 12 deletions

View File

@@ -66,7 +66,12 @@ namespace MediaBrowser.Common.ScheduledTasks
void Cancel(IScheduledTaskWorker task);
Task Execute(IScheduledTaskWorker task, TaskExecutionOptions options = null);
void Execute<T>()
where T : IScheduledTask;
event EventHandler<GenericEventArgs<IScheduledTaskWorker>> TaskExecuting;
event EventHandler<TaskCompletionEventArgs> TaskCompleted;
bool SuspendTriggers { get; set; }
}
}