+1 vote
in JAVA by
What Is Asynchronous Call?

1 Answer

0 votes
by

If your API call is classified as an Asynchronous call then:

  1. It means that your application will not wait for the API call response and it will function as it is. Once the response is received it will include in the process and the system will continue to work as it is.
  2. It doesn’t have any performance lag because the applications work continuously and it doesn’t have to stop for any specific response to be received from the API calls.

Related questions

+1 vote
asked Feb 18, 2020 in JAVA by rahuljain1
0 votes
asked Apr 13, 2023 in JAVA by Robin
...