jellyfin-server/MediaBrowser.Server.Mono/Diagnostics/ProcessManager.cs

25 lines
536 B
C#
Raw Normal View History

2015-02-28 18:47:05 +00:00
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; }
}
}
}