概述
Threading.Timer 类对在单独线程中定期运行任务十分有用。例如,可以使用线程计时器检查数据库的状态和完整性,或者备份重要文件。以下示例每两秒钟启动一个任务,并使用标志来启动使计时器停止的 Dispose 方法。本例将状态发送到输出窗口,因此在测试代码之前,应按 CONTROL+ALT+O 键以使此窗口可见。
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>Class StateObjClass
' 用于保留调用 TimerTask 所需的参数
Public SomeValue As Integer
Public TimerReference As System.Threading.Timer
Public TimerCanceled As Boolean
End Class
Sub RunTimer()
Dim StateObj As New StateObjClass()
StateObj.TimerCanceled = False
StateObj.SomeValue = 1
Dim TimerDelegate As New Threading.TimerCallback(AddressOf TimerTask)
' 创建每隔 2 秒钟调用过程的计时器。
' 注意:这里没有 Start 方法;创建实例之后,
' 计时器就开始运行。
Dim TimerItem As New System.Threading.Timer(TimerDelegate, StateObj, _
2000, 2000)
StateObj.TimerReference = TimerItem ' 为 Dispose 保存一个引用。
While StateObj.SomeValue < 10 ' 运行 10 个循环。
System.Threading.Thread.Sleep(1000) ' 等待 1 秒钟。
End While
StateObj.TimerCanceled = True ' 请求计时器对象的 Dispose。
End Sub
Sub TimerTask(ByVal StateObj As Object)
Dim State As StateObjClass = CType(StateObj, StateObjClass)
Dim x As Integer
' 使用 Interlocked 类递增计数器变量。
System.Threading.Interlocked.Increment(State.SomeValue)
Debug.WriteLine("已启动了新线程 " & Now)
If State.TimerCanceled Then ' 已请求 Dispose。
State.TimerReference.Dispose()
Debug.WriteLine("完成时间 " & Now)
End If
End Sub
最后
以上就是悲凉冷风为你收集整理的[VB.NET]多线程——线程计时器的全部内容,希望文章能够帮你解决[VB.NET]多线程——线程计时器所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复