从外部打破 Parallel ForEach

Break the Parallel ForEach from outside

Google 没有帮助我,所以也没有。

var timer = new System.Timers.Timer(5000);
timer.Elapsed += BreakEvent;
timer.Enabled = true;

Parallel.ForEach<string>(fileNames, (fileName, state) =>
{
    try
    {
        ProcessFile(fileName);
    }
    catch (Exception)
    {

    }
    finally
    {

    }
});

我想在 5 秒后(在 BreakEvent 中)打破这个 ForEach 循环。

当然可以是按钮或任何东西。

我知道突破(在我的例子中)

state.Stop();

但它仍在循环中。

有可能吗?

编辑:

对于所有搜索到其他方式的人,我只是想一想:

var timer = new System.Timers.Timer(5000);

timer.Elapsed += new System.Timers.ElapsedEventHandler((obj, args) =>
{
    state.Stop();
});

timer.Enabled = true;

我建议使用取消:

// Cancel after 5 seconds (5000 ms)
using (var cts = new CancellationTokenSource(5000))
{
    var po = new ParallelOptions()
    {
        CancellationToken = cts.Token,
    };

    try
    {
        Parallel.ForEach(fileNames, po, (fileName) =>
        {
            //TODO: put relevant code here
        });
    }
    catch (OperationCanceledException e)
    {
        //TODO: Cancelled 
    }
}