Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6151123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:43:30+00:00 2026-05-23T19:43:30+00:00

I am using the @Async annotation on one of my functions and that function

  • 0

I am using the @Async annotation on one of my functions and that function returns a Future<integer> object.
The method is called a few times and the results are put in a list. is there a way to poll that list in a similar way that ExecutorCompletionService.take() works?

I do not have an executor to pass to ExecutorCompletionService ctor since i am using spring.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T19:43:31+00:00Added an answer on May 23, 2026 at 7:43 pm

    Well, I have not found something supplied by string so I implemented my own (comments are more than welcome):

    public class CompletionService<V> {
    
        private List<Future<V>> results;
        private static boolean loop = true;
    
        public CompletionService(List<Future<V>> results) {
            this.results = results;
        }
    
        public Future<V> take() {
    
            Future<V> retval = null;
            int i = -1;
    
            while (loop) {
                for (i = 0; i < results.size(); i++) {
                    if (results.get(i).isDone()) {
                        retval = results.get(i);
                        abortTake();
                        break;
                    }
                }
            }
    
            //remove task only if it is done
            if (i > -1 && results.get(i).isDone()) {
                results.remove(i);
            }
            resetLoop();
            return retval;
        }
    
        public synchronized void abortTake() {
            loop = false;
        }
    
        private synchronized void resetLoop() {
            loop = true;
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When writing async method implementations using the BeginInvoke/EndInvoke pattern the code might look something
$.ajax({ url: /cgi-bin/stats.exe, method: post, async: false, data: { refresh: a41 } }); Using
In F# I know how to wait asynchronously for one event using Async.AwaitEvent :
I'm developing a server on C# (using *Async methods). Everything works fine, until one
I asynchronously invoke a method with Spring, using @Async . This method invokes another
I am using async sockets in my project. When i calling Disconnect method in
I am using some third party library to connect to a server via async
Using ASP.NET MVC there are situations (such as form submission) that may require a
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
I am using the async version of Google Analytics along with custom variables and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.