Larry Brister
asked on
Check if threads running every minute
In a VB.Net app I have a List variable (OF Thread)
Dim startList As New List(Of Threading.Thread)
I add to this inside my app with
startList.Add(phoneWorkerT hread)
How can I use that list to go and check on the current ThreadState for each one in the list every 120 seconds?
Dim startList As New List(Of Threading.Thread)
I add to this inside my app with
startList.Add(phoneWorkerT
How can I use that list to go and check on the current ThreadState for each one in the list every 120 seconds?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER