added IProcessManager

This commit is contained in:
Luke Pulverenti
2015-02-28 13:47:05 -05:00
parent 291727f624
commit 3d22c48670
23 changed files with 291 additions and 23 deletions

View File

@@ -0,0 +1,24 @@
using MediaBrowser.Controller.Diagnostics;
using System;
using System.Diagnostics;
namespace MediaBrowser.Server.Mono.Diagnostics
{
public class ProcessManager : IProcessManager
{
public void SuspendProcess(Process process)
{
throw new NotImplementedException();
}
public void ResumeProcess(Process process)
{
throw new NotImplementedException();
}
public bool SupportsSuspension
{
get { return false; }
}
}
}