aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Tasks/IScheduledTaskWorker.cs
diff options
context:
space:
mode:
authorstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
committerstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
commit48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch)
tree8dae77a31670a888d733484cb17dd4077d5444e8 /MediaBrowser.Model/Tasks/IScheduledTaskWorker.cs
parentc32d8656382a0eacb301692e0084377fc433ae9b (diff)
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'MediaBrowser.Model/Tasks/IScheduledTaskWorker.cs')
-rw-r--r--MediaBrowser.Model/Tasks/IScheduledTaskWorker.cs76
1 files changed, 0 insertions, 76 deletions
diff --git a/MediaBrowser.Model/Tasks/IScheduledTaskWorker.cs b/MediaBrowser.Model/Tasks/IScheduledTaskWorker.cs
deleted file mode 100644
index 415207f8f..000000000
--- a/MediaBrowser.Model/Tasks/IScheduledTaskWorker.cs
+++ /dev/null
@@ -1,76 +0,0 @@
-using System;
-using MediaBrowser.Model.Events;
-
-namespace MediaBrowser.Model.Tasks
-{
- /// <summary>
- /// Interface IScheduledTaskWorker
- /// </summary>
- public interface IScheduledTaskWorker : IDisposable
- {
- /// <summary>
- /// Occurs when [task progress].
- /// </summary>
- event EventHandler<GenericEventArgs<double>> TaskProgress;
-
- /// <summary>
- /// Gets or sets the scheduled task.
- /// </summary>
- /// <value>The scheduled task.</value>
- IScheduledTask ScheduledTask { get; }
-
- /// <summary>
- /// Gets the last execution result.
- /// </summary>
- /// <value>The last execution result.</value>
- TaskResult LastExecutionResult { get; }
-
- /// <summary>
- /// Gets the name.
- /// </summary>
- /// <value>The name.</value>
- string Name { get; }
-
- /// <summary>
- /// Gets the description.
- /// </summary>
- /// <value>The description.</value>
- string Description { get; }
-
- /// <summary>
- /// Gets the category.
- /// </summary>
- /// <value>The category.</value>
- string Category { get; }
-
- /// <summary>
- /// Gets the state.
- /// </summary>
- /// <value>The state.</value>
- TaskState State { get; }
-
- /// <summary>
- /// Gets the current progress.
- /// </summary>
- /// <value>The current progress.</value>
- double? CurrentProgress { get; }
-
- /// <summary>
- /// Gets the triggers that define when the task will run
- /// </summary>
- /// <value>The triggers.</value>
- /// <exception cref="ArgumentNullException">value</exception>
- TaskTriggerInfo[] Triggers { get; set; }
-
- /// <summary>
- /// Gets the unique id.
- /// </summary>
- /// <value>The unique id.</value>
- string Id { get; }
-
- /// <summary>
- /// Reloads the trigger events.
- /// </summary>
- void ReloadTriggerEvents();
- }
-} \ No newline at end of file