0

您好我正在尝试使用 EventWaitHandle 类创建调度的实现

举个例子:

// Program 1
static void Main(string[] args)
{
    EventWaitHandle wh = new EventWaitHandle(false,EventResetMode.ManualReset,"MyCrossProcessEventHandle");
    wh.Set();
}

// Program 2
static void Main(string[] args)
{
    EventWaitHandle wh = new EventWaitHandle(false, EventResetMode.ManualReset, "MyCrossProcessEventHandle");

    while (true)
    {
        var span = CalculateSpan();

        wh.WaitOne(span);

        // TODO Implement check, why did execution proceed? 
        // timeout ocurred
        // OR
        // Eventhandle was set
        //
        // if timeout occured
        // break the current iteration loop (And thereby calculate a new timeout)
        //
        // if event.set
        // continue execution




        // SNIP SNIP - More code here
    }
}

private static int CalculateSpan()
{
    DateTime datetoRun = new DateTime(2020,01,01,00,00,00);

    var span = datetoRun - DateTime.Now;

    if (span.TotalMilliseconds >= int.MaxValue)
    {
        return int.MaxValue;
    }

    return (int)span.TotalMilliseconds;
}

阅读代码中的待办事项

归结为:所以我希望能够安排超过 int.MaxValue 的执行,并手动强制执行跨进程

也许是实现完全相同场景的更简单方法?

4

2 回答 2

1

如果您所追求的只是在做某事之前等待一段时间,那么您可以使用:

  • Thread.Sleep
    • 不推荐,因为这会阻塞线程并且通常被认为是不好的做法(除非你在一个单独的线程上你可以阻塞)
  • Timer
    • 最常见的解决方案,因为它支持异步触发计时器事件,因此它不会干扰您的主线程等。

您也可以只启动一个新线程 /Task并在做某事之前等待一段时间:

Task.Factory.StartNew(() =>
{
   Thread.Sleep(CalculateSpan());
   // Do something here because the time to wait has passed now
});
于 2013-04-07T14:22:29.630 回答
1

阅读文档(DOH)后,我找到了解决方案

    // Summary:
    //     Blocks the current thread until the current System.Threading.WaitHandle receives
    //     a signal, using a 32-bit signed integer to specify the time interval.
    //
    // SNIP SNIP
    //
    // Returns:
    //     true if the current instance receives a signal; otherwise, false.
    //
    // SNIP SNIP
    public virtual bool WaitOne(int millisecondsTimeout);
于 2013-04-08T06:34:37.930 回答