The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
40 views

How can i create a remote latch in java?

At the moment I have a server that: 1) Launches 100 servlet requests using an executor on localhost 2) Executes the servlet requests. 3) Decrements a latch counting the total amount of completed ...
4
votes
1answer
89 views

Why won't my Threads die and cause a memory leak?

An app of mine is accumulating a lot of Thread instances that the GC can't pick up and clear out. This memory leak crashes the app in the long run. I'm not 100% sure where they come from, but I have ...
0
votes
2answers
58 views

Number of tasks completed while executor is still running

Is there any way to find the number of tasks completed after a call to invokeAll()? It seems that that returns the list of booleans of completed tasks when all of the threads are completed. I have ...
0
votes
0answers
30 views

Using Java SE Endpoint executor with Embedded Tomcat

Is there any way to set an executor in an embedded Tomcat using sun-jaxws.xml or in another way by application deploying (Java EE)? With Jetty we were able to configure an executor like this: ...
1
vote
0answers
95 views

pending - Waiting for next available executor in Hudson

In hudson, am getting "pending - Waiting for next available executor" while building my job.Its showing Build Executor status as "Dead(!)" Can anyone tell how to overcome this issue? how to make ...
0
votes
0answers
131 views

Android executor service not running all my executor threads

executor not running all my threads! I have around ~800+ threads my executor is set for a fixed size of 5 executor = Executors.newFixedThreadPool(5); How i use them: numberofthreadsRequested++; ...
3
votes
2answers
127 views

How to monitoring HTTP requests and responses from/to servlets using Java

I'm testing a Web application written in Java EE using servlets (version 7). I'm sending a lot of HTTP requests to my servlets and I want to know when all requests are completed. To send requests I'm ...
3
votes
1answer
94 views

Is this the right way for using ThreadPoolExecutor?

I am trying to get thread pool executor to work, and am just wondering if I have gone wrong somewhere with the following code: public class testPool implements Runnable { static Executor ...
0
votes
2answers
87 views

Threads Executor non blocking list

I have a class that iterates through a list of links. For each link I want to do a treatment. So I have to create a thread for each link. Here is the code (Main): ThreadProcessing tp; for(int i = ...
3
votes
1answer
82 views

Keep track of tasks submitted to ThreadPoolExecutor

I am running several tasks in a ThreadPoolExecutor. I initialise it as follows: private VideoExportExecutor executor; private BlockingQueue<Runnable> jobQueue; public void ...
1
vote
3answers
137 views

Grails executor plugin callAsync block always taking the same values

I'm trying to use the executor plugin in grails but I'm having a problem which I am not able to solve. Basically, i have a list of links that I want to crawl and I was having an issue where it was ...
1
vote
0answers
76 views

Getting information about running tasks from Spring TaskExecutor and TaskScheduler

I've set up a system with a TaskExecutor and Taskscheduler that runs tasks on a cron-like schedule, but also allows tasks to be started on demand. One particular problem I haven't been able to solve: ...
2
votes
1answer
150 views

Parallel image renaming in Java with ExecutorService: Doesn't use 100% of my cpu-power

I have a problem with my parallel Java-code. I try to read some images from the disk, change the names of the images and then save them again into a different folder. To do so, I tried to run it in ...
0
votes
4answers
80 views

How can I know if a task submitted to executor threw exception?

If I run a thread in a ExecutorService is there a way to know that this thread did not throw an exception when it started execution?
0
votes
1answer
49 views

Java - Creating concurrent threads and making sure it dont break the server by controlling max thread using FixedThreadPool [closed]

For each request, my app speak to 5 different services(by post calls) and aggregates them as response. At the moment every thing is synchronous and my app speaks to each service one after other. I ...
2
votes
2answers
54 views

How can I do to method wait executor to run?

I have one executor running in a singleThreadExecutor and I need that after it finish call other method (saveJsonFile()), but only when my executor finish My class with executor ...
0
votes
1answer
125 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 ...
1
vote
2answers
127 views

Java - ExecutorService for fixed number of tasks

I would like to achieve the following behaviour using ExecutorService from Java. I have a large number of tasks to complete which can all be done in parallel. I would like to schedule from my main ...
0
votes
1answer
137 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, ...
1
vote
2answers
61 views

Is there a way to cancel and reuse an ExecutorService?

I am writing a Java Fractal Explorer, and the fractal calculation is done multi-threaded. Previously, I just created a bunch of threads (as many as the system has processor cores) and held them in an ...
1
vote
1answer
75 views

ExecutorService with Task chain shutdown

I have an ExecutorService which executes tasks which itself submit new tasks to the ExecutorService. When I call .shutdown(), I want the running tasks still being able to submit new tasks to the ...
0
votes
1answer
212 views

grails executor plugin - executorService injection

Trying to use the executorService injection in my service but it fails. When I read the document for the plugin, it mentions that the executorService is injected through the ...
0
votes
1answer
72 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 ...
2
votes
2answers
433 views

Java- FixedThreadPool with known pool size but unknown workers

So I think I sort of understand how fixed thread pools work (using the Executor.fixedThreadPool built into Java), but from what I can see, there's usually a set number of jobs you want done and you ...
0
votes
1answer
65 views

How to obtain references to Futures of a scheduledThreadPoolExecutor

I have a scheduled executor service and I require the Futures returned after tasks are scheduled. The Javadoc says that a ScheduledFuture is returned after scheduling a task - however, how can I ...
1
vote
2answers
150 views

Can I use executorservice to kill a specific thread if it's been running for too long?

So far in my experiments with the executorservice I've had a lot of advice that involves using future.get, and then future.cancel in order to throw a thread interrupt which then needs to be caught in ...
3
votes
2answers
307 views

What is optimum thread pool size for simple program running cpu based tasks in Java

Im using a thread pool to execute tasks , that are mostly cpu based with a bit of I/O, of size one larger than the number of cpus. ...
4
votes
2answers
175 views

Java Executor: Small tasks or big ones?

Consider one big task which could be broken into hundreds of small, independently-runnable tasks. To be more specific, each small task is to send a light network request and decide upon the answer ...
2
votes
1answer
56 views

Do spurious wakeups affect Future.get()?

Is Future.get( timeout, unit ) susceptible to the same type of spurious wakeup as documented for Object.wait() and Condition.await() in Javadoc? someType result; Future<someType> future = ...
1
vote
2answers
138 views

Java Executors and per-thread (not per-work unit) objects?

I have a task that would benefit from the Thread Pool design pattern (many small tasks to be performed in parallel). I initially implemented a naive thread pool from scratch, with n Runnables all ...
0
votes
1answer
210 views

OutputStreamWriter not writing

I have created a file with an asynctask. Afterwards scheduled an executor to write information to said file once every second. Once I touch a button the executor is shut down and the file closed but ...
0
votes
1answer
94 views

Sending work to a pool of workers that need initialization

I have a problem that seems close to what Executors and Thread pools do, however I can't seem to make it exactly fit. Basically I have workers which take a bit of time to initialize and that I'd like ...
0
votes
1answer
116 views

Shutdown executor without executorService in Java

Is there a way to shutdown an Executor in Java without first casting it to ExecutorService? Basically i have a class called Exx that implements Executor. I want to shutdown Exx. How would I do that? ...
0
votes
0answers
169 views

Can I cancel a swingworker and wait for it to complete before running background task

Can I cancel a swingworker and wait for it to complete before running background task. Or alternatively can I send an interrupt to a task that runs the code in doInBackground() without cancelling the ...
0
votes
5answers
299 views

Running a task in parallel to another task

I have the following Foo class that uses FooProcessor class. So what i want to do is, while running cp1 instance process method, in parallel I want to run cp2.process(). public class Foo { ...
1
vote
1answer
207 views

How to interrupt executor thread

What the right way to interrupt executor's thread? I've got this: Thread class with name Worker with method: public void run() { while(!(Thread.currentThread().isInterrupted()){ ...
1
vote
5answers
651 views

In Java how to shutdown executorservice when it may submit additional tasks to itself

I have a pipeline of tasks (each task in the pipeline has different parallelism requirements), each task works in a different ExecutorService. Tasks work on packets of data, so if we have 10 ...
0
votes
2answers
238 views

How to use Future and Callable in recursive method?

I am trying to use Future and Callable to turn a dfs recursive method into parallel to improve efficiency. But not sure how to do it right. Here is the code: public MyResult compute(MyTree tree, int ...
0
votes
1answer
138 views

Performance Improvement for each thread using different unique id

Problem Statement is:- Each thread uses unique ID between 1 and 1000 and program has to run for 60 minutes or more, So in that 60 minutes it is possible that all the ID's will get finished so I need ...
8
votes
2answers
985 views

Why does ScheduledExecutorService.shutdown() uses 100% of my CPU?

I've got the following simple code: package main; import java.util.concurrent.*; public class Main { public static void main(String[] args) throws InterruptedException { new Main(); ...
0
votes
3answers
273 views

Smalltalk - Can write the Java program in Smalltalk?

I am trying to convert this Java interpreter I wrote for my compiler to a Smalltalk interpreter. Is it possible? If so, what would be a good resources to look at? I am completely new to Smalltalk, ...
0
votes
0answers
37 views

Java library to maintain process pool [duplicate]

Possible Duplicate: Java library to maintain a process pool EDIT: Please answer here. I need to start and maintain a number of Java Workers (e.g. 10) that are continuously fed with jobs. ...
3
votes
2answers
535 views

Work/Task Stealing ThreadPoolExecutor

In my project I am building a Java execution framework that receives work requests from a client. The work (varying size) is broken down in to a set of tasks and then queued up for processing. There ...
6
votes
3answers
332 views

Java Concurrency in Practice: race condition in BoundedExecutor?

There's something odd about the implementation of the BoundedExecutor in the book Java Concurrency in Practice. It's supposed to throttle task submission to the Executor by blocking the submitting ...
0
votes
2answers
670 views

Using Executor instead of new Thread for Server socket clients

I'm currently writing a server which multiple clients will connect to. The communication protocol is basically that the server sends a task to the clients and the clients respond when the task is ...
0
votes
1answer
64 views

Preferred way of waiting on two ExecutorServices?

I have two ExecutorServices, one to hold producers and the other one to hold consumers. I'm using the awaitTermination method, which is blocking and needs a timeout parameter. But I want to wait on ...
0
votes
2answers
750 views

How Java's ThreadPoolExecutor uses custom ThreadFactory?

The ThreadPoolExecutor class allows to give a custom ThreadFactory to create new threads. However, I do not understand how these threads are used within sun's implementation of ThreadPoolExecutor. ...
0
votes
3answers
143 views

return values from threadExecutor

How do I access the getOptimizedMol() method within a fixed threadExecutor? I need to get the return Molecules as each optimizer thread finishes up? import ...
0
votes
3answers
196 views

Controlling thread using wait() and notify()

(Problem solved, solution below) I have 2 classes: Equip and Command. The equip is an equipment that run commands, but I need it to be able to run only 1 command at the same time. A command is a ...
2
votes
2answers
1k views

Difference between multithreading with and without Executor

I am trying to find out about the performance difference between normal multithreading and multithreading using executor (to maintain a thread pool). The below are code examples for both. Without ...

1 2 3