我有一个关于背景工作者的简单问题。我从未使用它,所以我不知道它是如何工作的。 我正在使用VB.NET express 2010。 我只想在表单的backgroundWorker中进行数据库监控。
以下是我想要实现的一些事情。
form.hide()
方法时执行此操作。请提供宝贵的回复,如果不是正确的方法,请另外建议。
答案 0 :(得分:1)
隐藏表单不会停止后台工作程序 - 实际上关闭表单不会停止它 - 表单将等待后台工作者isBusy属性在继续之前报告错误。
更新以回应新评论
您可能最好使用计时器并将其他工作卸载到新线程,请参阅下面的示例。如果操作尚未完成,则If _worker is nothing
将停止重新启动操作。请务必在流程结束时设置_worker = nothing
,以便工作正常。
此外,我只是快速输入,可能无法开箱即用,但应该给你一个起点。
Imports System.Threading
Public Class Form1
Dim _worker As Thread
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Timer1.Interval = 10000
'interval in milliseconds so 1000ms = 1 second / above 10000 = 10 seconds
Timer1.Enabled = True
Timer1.Start()
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
StartWorkerThread()
End Sub
Private Sub StartWorkerThread()
If _worker Is Nothing Then
_worker = New Thread(AddressOf myWorker)
_worker.Start()
End If
End Sub
Private Sub myWorker()
'do your work here...use an event or a delate to fire another sub/function on the main thread if required
'when finished
_worker = nothing
'Important! This will allow the operation to be started again on the timer tick
End Sub
End Class