Tagged Questions

9
votes
6answers
942 views

How can I wrap a method so that I can kill its execution if it exceeds a specified timeout?

I have a method that I would like to call. However, I'm looking for a clean, simple way to kill it or force it to return if it is taking too long to execute. I'm using Java. to illusrate: ...
4
votes
5answers
3k views

Java: Parameterized Runnable

Standard Runnable interface has only non-parametrized run() method. There is also Callable<V> interface with call() method returning result of generic type. I need to pass generic parameter, ...
3
votes
3answers
79 views

Is possible to control the amount of time that each thread executes in Java?

I want to control the amount of time that each thread uses. One thread does some processing and another processes data in the database, but the insertion is slower than processing because of the ...
3
votes
3answers
304 views

How to return object from Callable()

I'm trying to return a 2d array from call(), I'm having some issues. My code so far is: //this is the end of main Thread t1 = new Thread(new ArrayMultiplication(Array1, Array2, length)); ...
3
votes
1answer
160 views

Filling SWT table object using a separated thread class

I've got a code snippet by the swt team that does exactly what I need. However, there is a part I want to separate into another class, in particular, the whole inline stuff. In response to my former ...
3
votes
4answers
2k views

invokeAll() is not willing to acept a Collection<Callable<T>>

I fail to understand why this code won't compile ExecutorService executor = new ScheduledThreadPoolExecutor(threads); class DocFeeder implements Callable<Boolean> {....} ... ...
2
votes
1answer
58 views

Why the exception is not being thrown?

I have this simple piece of code: @Override public Object call() throws Exception { try (Connection conn = ConnectionPool.getConnection()) { pageDAO = new PageDAO(conn); linkDAO = ...
2
votes
4answers
382 views

java Callable FutureTask Excecuter: How to listen to finished task

I'm quite new to executer services. Liked doing everything myself, but I think it's time to trust these services. I want to hand by Executer a Runnable. The executer wraps that in a FutureTask and ...
2
votes
2answers
176 views

Java multithreading / synchronization issue

I am working on a large scale dataset and after building a model, I use multithreading (whole project in Java) as follows: OutputStream out = new BufferedOutputStream(new FileOutputStream(outFile)); ...
2
votes
2answers
632 views

How to ensure garbage collection of a FutureTask that is submitted to a ThreadPoolExecutor and then cancelled?

I am submitting Callable objects to a ThreadPoolExecutor and they seem to be sticking around in memory. Looking at the heap dump with the MAT tool for Eclipse see that the Callable objects are being ...
2
votes
3answers
185 views

How much logic is it “right” to put in a Callable?

I'm using callables quite often , and I've stubled upon a question that irritates me: Lets say that to run function foo() , one needs to do a couple of checks first. Should you 1. Insert the ...
1
vote
1answer
49 views

pass android function that uses a param

I've been using Callable, but now I need the function to use a param in the call method. I get that this isn't a capability of call so how can I do this? What I currently have (wrong): AsyncTask ...
1
vote
2answers
99 views

How do I efficiently process multiple results from an Executor Service

I'n new to ExecutorService, but am unsure about my approach to this. I could be dealing with up to 100 threads for a known task. I'm using the general format below, where I create a List of ...
1
vote
4answers
75 views

How to get information from several threads? Java

I want to start several callable threads in the same time(in loop), and want to return some information from everyone in main thread. How to realise this?
1
vote
1answer
105 views

how to hijack a Callable and execute hidden methods before call()

I'm adding implementations to some subsystems in a bigger project (HypergraphDB), and I should avoid to modify important code. In this project, there are about 70 Callable objects which define ...
1
vote
4answers
1k views

What's the difference between Future and FutureTask in Java?

Since use ExecutorService can submit a Callable task and return a Future, why need to use FutureTask to wrap Callable task and use the method execute? I feel they both do the same thing.
1
vote
2answers
121 views

Value gets changed upon comiting. | CallableStatements

I having a weird problem with a DAO class and a StoredProcedure, what is happening is that I use a CallableStatement object which takes 15 IN parameters, the value of the field id_color is retrieved ...
1
vote
3answers
579 views

Java - SwingWorker - problem

I am developing a Java Desktop Application. This app executes the same task public class MyTask implements Callable<MyObject> { in multiple thread simultaneously. Now, when a user clicks on a ...
1
vote
2answers
699 views

How to terminate CXF webservice call within Callable upon Future cancellation

Edit This question has gone through a few iterations by now, so feel free to look through the revisions to see some background information on the history and things tried. I'm using a ...
1
vote
4answers
2k views

How to schedule a Callable to run on a specific time?

I need to run a callable at a specific time of day. One way to do it is to calculate the timediff between now and the desired time , and to use the executor.scheduleAtFixedRate . Have a better idea? ...
0
votes
2answers
95 views

Event Driven Future<V> - Thread Pool

We use callable<V> and Future<V> to receive the result of a terminated thread from a thread pool. We should call get() to receive the returned result. My problem is: it is not event ...
0
votes
0answers
54 views

why accessing hidden methods in Callable Object doesn't work and blocks call?

I need to do some tinkering with lots of Callable objects, for which I need to find a way to access parts of it, before call(). I move the data in the Callable that I want to access into fields, and ...
0
votes
4answers
183 views

Parallel execution of callables

I'd like to execute multiple callables parallel. But it seems that the ExecutorService always waits until all callables are finnished. I've tried the following: final int nThreads = 10; ...
0
votes
2answers
378 views

Stop Executor when a Callable returns a specific result

I'd like to stop an Executor from running any more Future objects even if they have been submitted to the Executor. Getting multiple threads running though an Executor all works fine and well but the ...