queue « ThreadPool « Java Thread Q&A

Home
Java Thread Q&A
1.concurrency
2.Development
3.Exception
4.Notify
5.Operation
6.Socket
7.State
8.synchronize
9.Thread Safe
10.ThreadPool
Java Thread Q&A » ThreadPool » queue 

1. Java POJO: strategies for handling a queue of request objects to a server    stackoverflow.com

Right now I'm torn up in deciding the best way of handling request objects that I send up to a server. In other words, I have tracking request objects for things ...

2. Java Thread Pool with a Bounded Queue    stackoverflow.com

I'm using java.util.concurrent's Executors class to create a fixed thread pool for running request handlers for a web server:

static ExecutorService  newFixedThreadPool(int nThreads) 
and the description is:
Creates ...

3. Java Threadpools with competeting queues    stackoverflow.com

I have a situation where I'd like to use an extension of Java's fixed thread pools. I have N groups of runnable objects that I'd like to compete for resources. ...

4. Thread pool with bounded queue    stackoverflow.com

I have seen the thread pool executor implementation and the rejected execution policies that it provides. However, I have a custom requirement - I want to have a call back mechanism ...

5. Thread pool for mulitple work queues    coderanch.com

I would be grateful for any advice on the best solution for the following telecommunications problem; At run-time, work queues will be created dynamically (in fact 1 per call). In order to ensure that each item in the work queue is fully processed before processing of the next item begins, only 1 thread can act on a work queue at any ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.