如何在c#中指定时间后取消后台工作者

发布于 2024-08-03 01:31:40 字数 43 浏览 5 评论 0原文

如何在 C# 中的指定时间后取消后台工作程序或取消无响应的后台工作程序。

how to cancel background worker after specified time in c# or cancel not responding background worker.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雨落□心尘 2024-08-10 01:31:40

查看本教程:http://www.albahari.com/threading/part3.aspx

为了让 System.ComponentModel.BackgroundWorker 线程支持取消,您需要在启动线程之前将 WorkerSupportsCancellation 属性设置为 True。

然后,您可以调用BackgroundWorker的.CancelAsync方法来取消线程。

Check out this tutorial: http://www.albahari.com/threading/part3.aspx

In order for a System.ComponentModel.BackgroundWorker thread to support cancellation, you need to set the WorkerSupportsCancellation property to True before starting the thread.

You can then call the .CancelAsync method of the BackgroundWorker to cancel the thread.

甜是你 2024-08-10 01:31:40

BackgroundWorker 不支持这两种情况。
下面是一些支持这些情况的代码的开头。

class MyBackgroundWorker :BackgroundWorker {
    public MyBackgroundWorker() {
        WorkerReportsProgress = true;
        WorkerSupportsCancellation = true;
    }

    protected override void OnDoWork( DoWorkEventArgs e ) {
        var thread = Thread.CurrentThread;
        using( var cancelTimeout = new System.Threading.Timer( o => CancelAsync(), null, TimeSpan.FromMinutes( 1 ), TimeSpan.Zero ) )
        using( var abortTimeout = new System.Threading.Timer( o => thread.Abort(), null, TimeSpan.FromMinutes( 2 ), TimeSpan.Zero ) ) {
            for( int i = 0; i <= 100; i += 20 ) {
                ReportProgress( i );

                if( CancellationPending ) {
                    e.Cancel = true;
                    return;
                }

                Thread.Sleep( 1000 ); //do work
            }
            e.Result = "My Result";  //report result

            base.OnDoWork( e );
        }
    }
}

BackgroundWorker does not have support either case.
Here is the start of some code to support those cases.

class MyBackgroundWorker :BackgroundWorker {
    public MyBackgroundWorker() {
        WorkerReportsProgress = true;
        WorkerSupportsCancellation = true;
    }

    protected override void OnDoWork( DoWorkEventArgs e ) {
        var thread = Thread.CurrentThread;
        using( var cancelTimeout = new System.Threading.Timer( o => CancelAsync(), null, TimeSpan.FromMinutes( 1 ), TimeSpan.Zero ) )
        using( var abortTimeout = new System.Threading.Timer( o => thread.Abort(), null, TimeSpan.FromMinutes( 2 ), TimeSpan.Zero ) ) {
            for( int i = 0; i <= 100; i += 20 ) {
                ReportProgress( i );

                if( CancellationPending ) {
                    e.Cancel = true;
                    return;
                }

                Thread.Sleep( 1000 ); //do work
            }
            e.Result = "My Result";  //report result

            base.OnDoWork( e );
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文