Tagged Questions
8
votes
4answers
11k 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 ...
3
votes
2answers
132 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
525 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, ...
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
3answers
673 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
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 ...
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
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
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
180 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
194 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() ...