N
N
nuclear_kote2017-11-21 12:35:52
Java
nuclear_kote, 2017-11-21 12:35:52

What is the correct way to run an asynchronous method inside a service?

There is a service like this:

@Service
public class SomeService {
     ...
     private void asyncMethod() {
           while(true) {
               ....
               queue.poll();
              ....
          }
     }
     ....
}

how to properly run asyncMethod in a separate thread after service initialization?
Is there an option other than new Thread(this::asyncMethod).start() ?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question