2015-11-18 19:36:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading;
|
2018-03-10 08:05:56 +00:00
|
|
|
|
using Jackett.Common.Services.Interfaces;
|
2015-11-18 19:36:37 +00:00
|
|
|
|
|
2018-03-10 08:05:56 +00:00
|
|
|
|
namespace Jackett.Common.Services
|
2015-11-18 19:36:37 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public class TrayLockService : ITrayLockService
|
|
|
|
|
{
|
|
|
|
|
private readonly string EVENT_HANDLE_NAME = "JACKETT.TRAY";
|
|
|
|
|
|
|
|
|
|
private EventWaitHandle GetEventHandle()
|
|
|
|
|
{
|
|
|
|
|
return new EventWaitHandle(false, EventResetMode.ManualReset, EVENT_HANDLE_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void WaitForSignal()
|
|
|
|
|
{
|
|
|
|
|
if (System.Environment.OSVersion.Platform != PlatformID.Unix)
|
|
|
|
|
{
|
|
|
|
|
GetEventHandle().Reset();
|
|
|
|
|
GetEventHandle().WaitOne();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Signal()
|
|
|
|
|
{
|
|
|
|
|
if (System.Environment.OSVersion.Platform != PlatformID.Unix)
|
|
|
|
|
{
|
|
|
|
|
GetEventHandle().Set();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|