我在理解 Mutex 类以及如何在 WP8 应用程序中正确使用它时遇到问题。我正在尝试做的是只允许 ScheduledAgent 或应用程序一次读取/写入文件到存储。我已经尝试了各种方法,但没有运气。任何帮助,将不胜感激。
调度代理代码:
当我调用 ReleaseMutex() 时出现以下代码错误。当我像这样创建 Mutex 对象时,此问题已得到解决:new Mutex( true , "FlightPathData")。但后来我永远无法获得锁并挂在 WaitOne()
错误
对象同步方法是从未同步的代码块中调用的。
代码
readonly Mutex mutex = new Mutex(false, "FlightPathData");
protected async override void OnInvoke(ScheduledTask task)
{
List<METAR> savedMetars = null;
var facility = ....;
bool mutexAcquired = mutex.WaitOne();
try
{
if (mutexAcquired)
{
savedMetars = await Data.LoadMetarsAsync(facility.Identifier);
//Thread.Sleep(15000);
}
}
finally
{
if (mutexAcquired)
{
mutex.ReleaseMutex();
}
}
NotifyComplete();
}
ViewModelCode(工作正常,直到 ScheduledAgent ReleaseMutex() 失败)
static readonly Mutex mutex = new Mutex(true, "FlightPathData");
...
mutex.WaitOne();
var savedMetars = await Data.LoadMetarsAsync(this.Facility.Identifier);
mutex.ReleaseMutex();