Login
Remember
Register
Ask a Question
What Is Asynchronous Call?
+1
vote
asked
Feb 18, 2020
in
JAVA
by
rahuljain1
What Is Asynchronous Call?
#asyncronous-call
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 16, 2021
by
sharadyadav1986
If your API call is classified as an Asynchronous call then:
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.
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.
...