The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
21 views

Do I need to synchronize ExecutorService.execute()?

I have created a Enum singleton as below: public enum Logging { INSTANCE; ExecutorService pool = Executors.newFixedThreadPool(4); } Now I am using this pool for logging ...
0
votes
0answers
15 views

RejectedExecutionException 128 Active Threads AsyncTaskLoader

I've searched around for solutions to RejectedExecutionException using AsyncTaskLoader but none have worked. Most of them are for AsyncTask like ...
4
votes
3answers
33 views

newFixedThreadPool.setCorePoolSize() doesn't make use of the threads, creates new theads which may be overhead

newFixedThreadPool.setCorePoolSize() doesn't make use of the threads, creates new theads. Explanation: I make a newFixedThreadPool for size 2 and if both the threads of this pool are busy I add two ...
1
vote
2answers
43 views

Testing PriorityBlockingQueue in ThreadPoolExecutor

I realized my ThreadPoolExecutor with PriorityBlockingQueue like in this example: http://stackoverflow.com/a/12722648/2206775 and wrote a test: PriorityExecutor executorService = (PriorityExecutor) ...
3
votes
2answers
93 views

Pre-initializing a pool of worker threads to reuse connection objects (sockets)

I need to build a pool of workers in Java where each worker has its own connected socket; when the worker thread runs, it uses the socket but keeps it open to reuse later. We decided on this approach ...
0
votes
1answer
37 views

IntentService is hanging UI in android

In IntentService i am using ThreadPoolExecutor poolSize 8 and maxPoolSize 10. When ever Service is started it will effect on UI. In runTask() method i am add tasks to thread pool. private ...
0
votes
1answer
107 views

Java NIO Http client requests with thread pools

Thread Pool Executor uses number of threads for Future Task. It assigns at least one thread until run() or call() returns. So, I am confused on how to use Thread Pool for JAVA NIO HTTP requests. 1) ...
0
votes
1answer
47 views

Execute two Runnables Android

I'd like to make two Runnables work for my Android App: 1) Runnable r1 for changing an ImageView: Runnable r1 = new Runnable() { @Override public void run() { ...
0
votes
2answers
61 views

Checking whether all tasks in ThreadPoolExecutor are completed

How can I check whether all tasks submitted to ThreadPoolExecutor are completed? New tasks can be added from previously submitted tasks, so I can't call shutdown followed by awaitTermination nor ...
1
vote
1answer
60 views

ThreadPoolExecutor clean up when a thread dies

I have a ThreadPoolExecutor that runs a few core and a certain max number of threads. The task that is run creates HornetQ (standalone) connections for each thread and keeps them alive while the ...
1
vote
0answers
38 views

ThreadPoolExecutor.worker.run spends too much time

I have several tasks that executed in CachedThreadPool. After some profiling I found that the task itself runs only 10% of time and other 90% are used by threadpoolexecutor$worker.run (I'm using ...
0
votes
1answer
45 views

Reading data from running thread

I know java thread related questions have been asked many times, but I have not been able to piece together an answer to my question. I am still new to thread programming, so excuse my ignorance. I ...
2
votes
1answer
96 views

ThreadPoolExecutor backed by PriorityBlockingQueue doesn't seem to work

I have a large number of pictures to fetch from a server, and I want to fetch some pictures with higher priority than others so I've implemented my own ThreadPoolExecutor that returns a FutureTask ...
0
votes
2answers
77 views

Java - thread Pool

My scheduled thread pool---> private static ScheduledExecutorService pendingCheckScheduler = Executors.newScheduledThreadPool(1); Thread 1---> private ScheduledFuture<?> ...
2
votes
3answers
120 views

ExectuorService vs ThreadPoolExecutor (which is using LinkedBlockingQueue)

I am working on a Multithreaded project in which I need to spawn mulitple threads to measure the end to end performance of my client code as I am doing Load and Performance testing. So I created below ...
0
votes
1answer
59 views

Control in Thread class doesn't come back after super.run() call

I have a threadfactory, executor, thread class and a runnable class. Here is the thread class: (threadsCount is an AtomicInteger that I use to keep track of number of threads created) public void ...
0
votes
0answers
25 views

Asynctask speed vs same process in ExecutorService [duplicate]

My app is required to scan a subnet for responding devices (and check port 80/8080 for a specific service). I was using an executorservice/threadpool to complete the scan task - which took approx 30 ...
1
vote
4answers
97 views

Writing Files using Executor in Java

I have a List<Map<String,String>> ie; List of Maps. Each Map has File Name as Key and File Content as Value. I have more than 25 Lakh Maps in above List. My requirement is to iterate ...
0
votes
1answer
94 views

meaning of 'core pool size' in ScheduledThreadPoolExecutor's constructor

I'm new to ScheduledThreadPoolExecutor (as I usually use the simple Timer, but people have been advising against it), and I don't quite understand what would be the appropriate integer value to pass ...
4
votes
1answer
185 views

ThreadPoolExecutor with unbounded queue not creating new threads

My ThreadPoolExecutor is failing to create new threads. In fact I wrote a somewhat hacky LinkedBlockingQueue that will accept any task (i.e. it is unbounded) but call an additional handler - which in ...
0
votes
1answer
67 views

scheduled executor accuracy

I am having a problem with the ScheduledExecutorService in java (I didn't face this problem a couple of days back is what makes it strange for me). Please find the code below and the console output. ...
1
vote
1answer
214 views

Android - Asynctask and ThreadPoolExecutor exception in User login authentication process

In the LoginActivity class am using the Asynctask class to do the authentication for the fetched email address and password. This is the main activity class which calls the attemptlogin function ...
0
votes
1answer
79 views

how to get currently running threads

I'm using ThreadPoolExecutor to launch the threads which process requests from a blocking queue. In case of queue is empty, all these worker threads are waiting. which makes every thread in this pool ...
1
vote
1answer
47 views

Is zero a valid corePoolSize for ScheduledThreadPoolExecutor in Android?

The documentation says that the constructor throws an IllegalArgumentException if corePoolSize is less than zero. This suggests that zero is a valid value, meaning to not keep any idle threads in the ...
0
votes
1answer
392 views

Android parallel (simultaneous) images download

Guys help please it's important. I need to download about 2000 images in less than 5 minutes. So I decided to make parallel image downloading. If someone can suggest me better way to do parallel ...
1
vote
4answers
298 views

ThreadPoolExecutor : Tasks are getting queued up and not submitted

We have a scenario where tasks submitted to ThreadPoolExecutor are long running. When the thread pool is started we start it with core pool size = 5, max pool size = 20 and queue size of 10. In our ...
0
votes
1answer
127 views

RejectedExecutionException using ThreadPoolExecutor and AndroidHttpClient

I am using my own ThreadPoolExecutor to know when all my tasks have finished. I have a method that is a client.get() call and on success, it would do more client.get() calls. However, I am getting ...
0
votes
1answer
114 views

AsyncHttpClient with ThreadPoolExecutor to know when all tasks are finished?

I am using AsyncHttpClient to get some JSONs. My method will parse through the JSON and will fire another get request, so I don't actually know how many threads are running. After some searching, I ...
0
votes
1answer
219 views

Is it efficient to run AsyncTask<> in ThreadPoolExecutor?

I want to implement such a task: in the background (when app is in the background) look for new data for the user and give notifications about it. I have to do this periodically (every 2-3 ...
0
votes
1answer
403 views

Netty OrderedMemoryAwareThreadPoolExecutor not creating multiple threads

I use Netty for a multithreaded TCP server and a single client persistent connection. The client sends many binary messages (10000 in my use case) and is supposed to receive an answer for each ...
0
votes
1answer
155 views

get a single Thread from ThreadPoolExecutor

I am running a ThreadPoolExecutor with a number of Threads. I want to manipulate some data in the Threads, so I want to send an object to the thread and after it finishes use the data. The only way I ...
0
votes
1answer
261 views

PhoneGap Google Cloud Messaging Android problems

02-01 14:16:32.054: E/AndroidRuntime(17134): FATAL EXCEPTION: pool-2-thread-2 02-01 14:16:32.054: E/AndroidRuntime(17134): java.lang.NullPointerException 02-01 14:16:32.054: E/AndroidRuntime(17134): ...
7
votes
8answers
413 views

Executors: How to synchronously wait until all tasks have finished if tasks are created recursively?

My question is strongly related to this one here. As was posted there, I would like the main thread to wait until the work queue is empty and all tasks have finished. The problem in my situation is, ...
0
votes
2answers
47 views

Conditional blocking with ThreadPoolExecutor

I want to extend ThreadPoolExecutor to not only block if the maximum thread count has been reached but also on a separate condition which I could set. I'm not sure how to go about this, or if it is ...
1
vote
2answers
207 views

LinkedBlockingQueue alternatives for JDK 6

I am using LinkedBlockingQueue for my threadPool new ThreadPoolExecutor(20, 21, 10, TimeUnit.SECONDS, ...
0
votes
1answer
151 views

Multiple simultaneous HTTP requests on Android

So, I have the code below inside an AsyncTask and want to call 7 different asynchronous HTTP requests. All works well, all the 7 execute() methods start at the same time (give a take a few millis, ...
2
votes
1answer
123 views

Why ThreadPoolExecutor behaves differently when running Java program in Eclipse and from command line?

Can anybody explain why this code throws OOME when I run it from Eclipse (Juno) but works fine when I run it from command line? I use -Xmx256M in both cases. static class Task implements Runnable { ...
0
votes
2answers
38 views

Invoking all threads when a job arrives in threadPoolExecution

In the common workQueue , theadPoolExecution architecture , when a job arrives , only one thread is invoked and that thread completes the work. Instead i want all threads to be invoked and all the ...
0
votes
1answer
79 views

Best practice when reinitialize an Executor

I have a Swing application, which uses a ThreadPoolExecutor to perform multiple tasks. At one point, I want to reinitialize everything. I am using executor.purge(); and ...
0
votes
1answer
43 views

Java ExecutorCompletionService as API Responder

I have a server application that listens on a ServerSocket for incoming queries. The clients submitting the queries expect to open a socket to the server, pass their query upstream, and then (possibly ...
0
votes
2answers
310 views

Spring JPA Multi Threading

We are building a product, so from performance point of view i need some help. We are using complete Spring (MVC, JPA, Security etc..) We have a requirement where say for a particular flow there can ...
2
votes
2answers
2k views

ThreadPoolExecutor fixed thread pool with custom behaviour

i'm new to this topic ... i'm using a ThreadPoolExecutor created with Executors.newFixedThreadPool( 10 ) and after the pool is full i'm starting to get a RejectedExecutionException . Is there a way to ...
7
votes
1answer
462 views

Is my ThreadPoolExecutor leaking memory?

I'm using a ThreadPoolExecutor to run tasks. The backend is a SynchronousQueue, so if the executor is already perfoming a task, it throws the RejectedExecutionException. Here's a simple test case: ...
1
vote
3answers
497 views

How to force terminate all workers in ThreadPoolExecutor immediately

I have a number of tasks inside a TheadPoolExecutor. I have a stop button on my interface that should terminate all the threads inside ThreadPoolExecutor immediately. I am looking for a way to do it. ...
0
votes
1answer
150 views

Change delay of ScheduledThreadPoolExecutorService without terminating the service

As the name suggests, we have a daemon framework which uses Executor service to schedule daemons. java.util.concurrent.ScheduledThreadPoolExecutor.scheduleWithFixedDelay(Runnable command, long ...
5
votes
3answers
371 views

Specify task order execution in Java

I've searched a lot but couldn't find any solution. I use java thread pool in such way: ExecutorService c = Executors.newFixedThreadPool(3); for (int i = 0; i < 10; ++i) { c.execute(new ...
0
votes
1answer
328 views

Handling file upload in a non-blocking manner

The background thread is here Just to make objective clear - the user will upload a large file and must be redirected immediately to another page for proceeding different operations. But the file ...
0
votes
2answers
160 views

Start new thread instead of put to queue

From javadoc for ThreadPoolExecutor: When a new task is submitted in method execute(java.lang.Runnable) .... If there are more than corePoolSize but less than maximumPoolSize threads running, ...
4
votes
3answers
588 views

Using ExecutorService to process jobs in parallel

I am writing a java program that needs to process a lot of URLs. Each URLs will run the following jobs IN ORDER: download, analyze, compress Instead of having one single thread to do all the jobs at ...
1
vote
4answers
1k views

MultiThreading Vs ThreadPoolExecutor

I have used multithreading in many of applications I wrote . While reading more I came across ThreadPoolExecutors . I couldn't not differentiate between the two scenario wise . Still what I understand ...

1 2