I have a single threaded executor service for fetching some data over the network.

As the user is typing in a search box I am enqueuing possible network tasks. What I want is to cancel all previous requests and only enqueue and immediately run the latest one.

My current approach is to override execute() and submit() methods and clear the queue before calling super.

Any thoughts on this?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Don't get it, why don't you save the Future returned on posting a callable to the service, and then cancel() the future if you don't want it to be executed.

e.g.

Future f1 = service.submit(some_task);

// later

f1.cancel(true); // will interrupt if running...

Cleaner IMO...

link|improve this answer
+1 - no point in overriding if you don't need to. – berry120 Feb 9 at 0:55
As the user is typing more and more requests are enqueued. I want to SKIP all these requests and only run the last one queued. – dnkoutso Feb 9 at 1:22
@dnkoutso, right, so save all the futures in a list, and cancel all previous ones before adding the new one... – Nim Feb 9 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.