Tagged Questions

8
votes
4answers
10k views

Is it a good way to use java.util.concurrent.FutureTask?

First of all, I must say that I am quite new to the API java.util.concurrent, so maybe what I am doing is completely wrong. What do I want to do? I have a Java application that basically runs 2 ...
4
votes
3answers
842 views

How to catch exceptions in FutureTask

After finding that FutureTask running in a Executors.newCachedThreadPool() on Java 1.6 (and from Eclipse) swallows exceptions in the Runnable.run() method, I've tried to come up with a way to catch ...
3
votes
2answers
128 views

How to get to FutureTask execution state?

I have a singleThreadExecutor in order to execute the tasks I submit to it in serial order i.e. one task after another, no parallel execution. I have runnable which goes something like this ...
3
votes
1answer
512 views

Android BluetoothSocket - Timing out

I have written a Bluetooth API for connecting with an external accessory. The way that the API is designed is that there are a bunch of blocking calls such as getTime, setTime, getVolume, setVolume, ...
3
votes
1answer
283 views

a funny thing happens… ExecutorCompletionService

I have an application written in java that needs to find all the reachable hosts on the network. I use InetAddress.isReachable() to do this with a timeout of 2000 milliseconds. I look up the current ...
3
votes
3answers
1k views

How to implement PriorityBlockingQueue with ThreadPoolExecutor and custom tasks

I've searched a lot but could not find a solutuion to my problem. I have my own class, BaseTask, that uses a ThreadPoolExecutor to handle tasks. If I don't want prioritization (i.e. using a ...
2
votes
4answers
377 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
3answers
667 views

Difference between TimerTask and Executors.newScheduledThreadPool(1)

I need to schedule some work to be done in the future. I can do it in 2 ways: Create a TimerTask and execute timer.schedule(...); Use Executors.newScheduledThreadPool(1): ScheduledExecutorService ...
2
votes
2answers
626 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
1answer
817 views

how do FutureTasks and CachedThreadPool work

I currently have code that does the following: private final static ExecutorService pool = Executors.newCachedThreadPool(); public void foo(){ FutureTask<MyObject> first_task = ...
2
votes
3answers
1k views

How do I get FutureTask to return after TimeoutException?

In the code below, I'm catching a TimeoutException after 100 seconds as intended. At this point I would expect the code to exit from main and the program to terminate but it keeps printing to the ...
2
votes
1answer
3k views

Seeking Clarity on Java ScheduledExecutorService and FutureTask

I'm just starting to look into Futures and the ScheduledExecutorService in Java, and I'm wondering why my Callable isn't running on the schedule I've indicated. In this sample code, the callable runs ...
2
votes
1answer
1k views

Can you use Future/Futuretask objects with Spring TaskExecutors?

Is it possible to use Java FutureTask with a Spring TaskExecutor to get a Future object? I'm looking for a TaskExecutor that implements the Java ExecutorService interface, in particular the submit() ...
1
vote
1answer
85 views

ExecutionException thrown but without a cause

I have a futures task that is doing some I/O operations over the socket to a server. When I use the get() method of the task to retrieve the result, I am getting ExecutionException, but with no cause ...
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
2answers
238 views

FutureTask cancel()

Basically I have the following snippet, (let [task (FutureTask. fn) thr (Thread. task)] (.start thr) ;;wait for signal... (.cancel task true) (.stop thr)) Problem is once in a ...
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
1answer
111 views

Require FutureTask to be started before cancelled

In my Callable code I use signaling to notify multiple ending behaviours to another thread. The Callable objects are queued up with FutureTasks in an Executor. They may also be cancelled after being ...
1
vote
1answer
435 views

ScheduledExecutorService.scheduleAtFixedRate And Setting initialDelay To Date In The Past

I'm working on a scheduling system in Java that sends out reminders based on a startDate, endDate and occurrence (hourly, daily, weekly, monthly, Mondays, etc). Originally I was using Timer and ...
1
vote
4answers
2k views

Java 5: java.util.concurrent.FutureTask - Semantics of cancel() and done()

I am currently hunting a nasty bug in a multi-threaded environment using FutureTasks and Executors. The basic idea is this to have a fixed number of threads execute individual FutureTasks that compute ...
0
votes
2answers
178 views

Future Task Async Calls hanging while exception occurs

I wrote many Async Future Task Calls one below another in my java program. Giving one sample below FutureTask<List<ConditionFact>> x = getConditionFacts(final Member member); ...
0
votes
1answer
193 views

Wait for cancel() on FutureTask

I want to cancel a FutureTask that I get from a ThreadPoolExecutor but I want to be sure the that Callable on the thread pool has stopped it's work. If I call FutureTask#cancel(false) and then get() ...