Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I\'d like to have a ScheduledThreadPoolExecutor which also stops the last thread if there is no work to do, and creates (and keeps threads alive for some time) if there are new tasks. But once there i
My co-worker is using a third-party .NET library for which we don\'t have the source code.We\'re using a ThreadPool to have a lot of threads call into this library, and occasionally one of the threads
I am in the midst of writing a C# Windows Form application that processes quotes from the market through an algorithm (strategy) to create orders to a brokerage firm.That all seems to be testing fairl
Normally i was creating each thread per action i wanted to do multithreaded. I was doing it like that:
I am about to implement the archetypal FileSystemWatcher solution.I have a directory to monitor for file creations, and the task of sucking up created files and inserting the into a DB.Roughly this wi
use ThreadPool.QueueUse开发者_运维问答rWorkItem (WaitCallback, Object) to start a thread with my target method and data. Can I pass more than one data into my method? the second parameter in QueueUser
I have a performance issue where clients are creating hundreds of a particular kind of object \"Foo\" in my C++ application\'s DOM.Each Foo instance has its own asynchronous work queue with its own th
I\'m currently using ThreadPool.QueueUserWorkItem in an Asp.Net application. Basically a user uploads a file using a form with an FileUpload Control.
I\'m writing a jetty configuration file, and I haven\'t been able to find information about a thread pooling parameter.