Link to home
Start Free TrialLog in
Avatar of Larry Brister
Larry BristerFlag for United States of America

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(phoneWorkerThread)

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
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Larry Brister

ASKER

Thanks