diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-24 21:14:24 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-24 21:14:24 -0400 |
| commit | caebcf82c0c0c83dd77cd69051e9fc3a8b37b9ff (patch) | |
| tree | 51108fd6280f85ee7af1a9a52d9eeba609105f8f /MediaBrowser.Controller/Diagnostics/IProcessManager.cs | |
| parent | e46c40faf2b14bd50ef4c32fdbd8685d0b1e0dfe (diff) | |
removed ProcessManager
Diffstat (limited to 'MediaBrowser.Controller/Diagnostics/IProcessManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Diagnostics/IProcessManager.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/MediaBrowser.Controller/Diagnostics/IProcessManager.cs b/MediaBrowser.Controller/Diagnostics/IProcessManager.cs deleted file mode 100644 index 2e076bd88..000000000 --- a/MediaBrowser.Controller/Diagnostics/IProcessManager.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.Diagnostics; - -namespace MediaBrowser.Controller.Diagnostics -{ - /// <summary> - /// Interface IProcessManager - /// </summary> - public interface IProcessManager - { - /// <summary> - /// Gets a value indicating whether [supports suspension]. - /// </summary> - /// <value><c>true</c> if [supports suspension]; otherwise, <c>false</c>.</value> - bool SupportsSuspension { get; } - - /// <summary> - /// Suspends the process. - /// </summary> - /// <param name="process">The process.</param> - void SuspendProcess(Process process); - - /// <summary> - /// Resumes the process. - /// </summary> - /// <param name="process">The process.</param> - void ResumeProcess(Process process); - } -} |
