4

有没有办法告诉线程池管理器只有x个线程调用特定方法或方法组?

我有一个应用程序,我在整个地方都使用线程池工作线程,并且它可以流畅地工作;但是,我委托给工作线程的任务之一是 Web 服务调用,它将拒绝超过 5 个并发请求。我不想将线程池限制为 5 个线程,因为许多其他东西使用线程并且可以处理更多。

有没有办法“划分”线程池来表示“在任何时间点,你将有最多x 个线程在做这个特定的事情,但其余的线程可以去做其他事情”?

4

4 回答 4

4

使用信号量将稀缺资源的访问限制为最大。5.

一个 Semaphore 可以配置为只允许 N 个线程的并发访问。您需要将 Semaphore 配置为 N=5 并让所有线程在调用 web 服务之前等待它。

于 2012-04-19T19:59:11.843 回答
2

创建另一个线程池和 SetMaxThreads(5) - 这是最简单的方法。

好的,你不能用 Threadpool 类来做。

就这样我没有被否决:

public abstract class Task {
    public EventHandler FonComplete;
    public ThreadPool myPool;
    protected int param;
    public Exception error;
    public Task(int inParam, EventHandler OnDone) { param = inParam; FonComplete = OnDone; }
    public abstract void run();
};


public class PoolThread{
private
    BlockingCollection<Task> FinQueue;
public
    PoolThread(BlockingCollection<Task> inQueue)
    {
       FinQueue=inQueue; 
    }
    Task inMess;
    public void run(){
        while(true){
            inMess=FinQueue.Take();
            if(inMess==null) return;
            try
            {
                inMess.run();
                inMess.error = null;
            }
            catch (Exception e)
            {
                inMess.error = e;
            }
            inMess.FonComplete(inMess, null);
        }
    }
};

public class ThreadPool {
    int FthreadCount;
    BlockingCollection<Task> queue;
    void startThread(){
            PoolThread thisPoolThread=new PoolThread(queue);
            Thread thisThread=new Thread(new ThreadStart(thisPoolThread.run));
            thisThread.Priority = ThreadPriority.BelowNormal;
            thisThread.IsBackground = true;
            thisThread.Start();
    }
    void SetThreadCount(int newCount){
        while(FthreadCount<newCount){startThread();};
        while(FthreadCount>newCount){
            queue.Add(default(Task));
            FthreadCount--;
        };
    }
    public ThreadPool(int initThreads){
        queue=new BlockingCollection<Task>();
        for(FthreadCount=0;FthreadCount<initThreads;FthreadCount++) startThread();
    }
    public int threadCount{
        get{return FthreadCount;}
        set
        {
            while (FthreadCount < value) {
                startThread();
                FthreadCount++;
            };
            while (FthreadCount > value)
            {
                queue.Add(default(Task));
                FthreadCount--;
            }
        }
    }

    public void submit(Task task){
        task.myPool=this;
        queue.Add(task);
    }
};

}

它不像'真正的' System.Threading.Threadpool,但它是一个具有固定数量线程的线程池

于 2012-04-19T19:49:43.140 回答
0

您可以使用多个线程池。拥有最多 5 个线程的线程池 A 用于对您的 Web 服务的请求,而线程池 B 具有更高的最大值用于其他一切。

于 2012-04-19T19:45:48.290 回答
0

首先,使用Task类而不是ThreadPool直接使用。启动一个父任务,该任务循环遍历您的每个工作项并启动一个子任务。父任务将使用信号量来限制并发子任务的数量。

这比让您的子任务在信号量上等待要好得多,因为现在我们只有一个池线程在等待信号量而不是很多。

var parent = Task.Factory.StartNew(
  () =>
  {
    var semaphore = new SemaphoreSlim(5, 5);
    foreach (var workitem in YourWorkItems)
    {
      var capture = workitem;
      semaphore.Wait();
      Task.Factory.StartNew(
        () =>
        {
          try
          {
            CallWebService(capture);
          }
          finally
          {
            semaphore.Release();
          }
        }, TaskCreationOptions.AttachedToParent);
    }
  }, TaskCreationOptions.LongRunning);

// Optionally wait for the parent to complete here.
// Because our child tasks are attached this will wait until everything is done.
parent.Wait(); 
于 2012-04-19T20:58:24.283 回答