Link to home
Create AccountLog 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
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of Larry Brister

ASKER

Thanks