W
William Stacey [MVP]
....> when you have no desire to be able to stop the workers anyway. To take
See one of my code examples above to get the same behavior as the thread
pool. Create that helper class once and use it.
my earlier example situation, you can certainly give the "request"
object the "client" object which should be used to send it, and then
either move all the sending code into the request or make the request
call the client asking it to send it, but it's less natural, IMO, than
asking the client (of which I only *want* one instance) to send the
request (which will vary).
See one of my code examples above to get the same behavior as the thread
pool. Create that helper class once and use it.