guest2013-1
guest
- Joined
- Aug 22, 2003
- Messages
- 19,800
- Reaction score
- 13
A poller within a poller 
So I want to create a windows service (or actually, have already) that polls SQL Server every 60 seconds to see if there are any new instances of pollers I need to create. So for each record (which has several columns that helps configure the poller/what it needs to poll), every 60 seconds it looks if there's a change in the recordset/any new ones came along.
If a new record comes along, it creates a new poller programmatically.
My question now is, is that poller on it's own thread? or is it running in serialized succession of the other pollers already created?
So I want to create a windows service (or actually, have already) that polls SQL Server every 60 seconds to see if there are any new instances of pollers I need to create. So for each record (which has several columns that helps configure the poller/what it needs to poll), every 60 seconds it looks if there's a change in the recordset/any new ones came along.
If a new record comes along, it creates a new poller programmatically.
My question now is, is that poller on it's own thread? or is it running in serialized succession of the other pollers already created?