Tagged Questions

9
votes
6answers
938 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: ...
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
2answers
131 views

boost multiple calls to class method

In boost::thread is it possible to call a class method with out making the class callable and implementing the void operator()() as in just call the class method for(int i=0;i<5;i++) ...
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
159 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 ...
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)); ...
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?
0
votes
2answers
94 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
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; ...