gpt4 book ai didi

C# 在 for 循环期间检查取消 token

转载 作者:行者123 更新时间:2023-12-01 23:47:17 25 4
gpt4 key购买 nike

我不完全理解取消标记,但我相信这是我需要使用的。

我有一个充满文件路径的列表框,以及一个方法 (ProcessListSort),它遍历列表框中的每个文件路径并根据文件类型执行不同的方法。 ProcessListSort 是从另一个方法调用的,该方法是通过单击按钮调用的。我正在尝试在后台任务中运行 BeginEverything,因为它锁定了 UI。在这种情况下实现取消 token 检查的最佳位置是什么?

点击此按钮开始流程:

public async void button1_Click(object sender, EventArgs e)
{
Task task1 = new Task(BeginEverything);
task1.Start();
await task1;
}

启动这个:

public void BeginEverything()
{
CreateThing1();
CreateThing2();
ProcessListSort(); //This is the one I think I need to interrupt because it's the longest
CreateThing3();
CreateThing4();
}

这里启动最长的任务(根据文件类型排序文件和执行其他方法,将文件路径传递给那些其他方法):

public void ProcessListSort()
{
for (int i = 0; i < listBox2.Items.Count; i++)
{
string p = listBox2.Items[i].ToString();
FileAttributes attr = File.GetAttributes(p);

if (p.EndsWith(".zip"))
{
Method1(p);
}
if (p.EndsWith(".txt"))
{
Method2(p);
}
if ((attr & FileAttributes.Directory) == FileAttributes.Directory)
{
Method3(p);
}
else
{
Method4(p);
}
}
}

单击“取消”按钮后立即取消是最理想的,但我愿意在 ProcessedListSort 中处理的每个文件之间进行取消。我认为问题是我正在运行其他方法的方法,我不确定是否需要应用取消检查。我得到的最接近的是它看到取消 token 的地方,但只是在所有内容都已执行后才“取消”。

非常感谢任何其他建议或指向替代方法的链接。我知道我做错了很多事。

最佳答案

您必须创建一个 CancellationTokenSource,然后将 CancellationToken 传递给您要取消的方法。

private CancellationTokenSource _cts =
new CancellationTokenSource( );

public async void OnClick( object sender, EventArgs args )
{
// Disable your button here.

var token = _cts.Token;
try { await Task.Run( ( ) => LongRunning( token ), token ); }
catch( OperationCanceledException )
{
Console.WriteLine( "Task was cancelled" );
}
// Enable your button here.
}

public void OnCancel( object sender, EventArgs args )
{
_cts.Cancel( );
_cts.Dispose( );
_cts = new CancellationTokenSource( );
}

public void LongRunning( CancellationToken token = default )
{
// You can either check for cancellation
// or throw if cancelled.

// If cancellation is requested this will throw an
// OperationCanceledException.
token.ThrowIfCancellationRequested( );

// If you don't want to throw you can check the
// CancellationToken to see if cancellation was requested.
if ( token.IsCancellationRequested )
return;

// You can also pass the token to other methods that
// you want to observe cancellation.
AnotherLongRunning( token );
}

关于C# 在 for 循环期间检查取消 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64002523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com