About 50 results
Open links in new tab
  1. Asynchronous vs synchronous execution. What is the difference?

    Asynchronous execution also happens when a program sends a message to a queue (as in messaging systems, such as ActiveMQ, WebSphere MQ, HornetQ, MSMQ, etc.). In this case, the asynchronous …

  2. What is the difference between synchronous and asynchronous …

    May 2, 2013 · When an asynchronous operation (like the second database query) is seen, the code is parsed and the operation is put in the queue, but in this case a callback is registered to be run when …

  3. webserver - What is the difference between asynchronous and …

    May 23, 2013 · Synchronous / Asynchronous communication has nothing to do with application waiting or not for resources. Synchronous communication is when communication looks like ping-pong one …

  4. Asynchronous vs Multithreading - Is there a difference?

    Mar 2, 2009 · 8 Asynchronous calls don't even need to occur on the same system/device as the one invoking the call. So if the question is, does an asynchronous call require a thread in the current …

  5. What are asynchronous functions in JavaScript? What is "async" and ...

    What are asynchronous functions in JavaScript and when and how do we use them? What are the async, await keywords in JavaScript and how do they relate to async functions?

  6. How do I return the response from an asynchronous call?

    How do I return the response/result from a function foo that makes an asynchronous request? I am trying to return the value from the callback, as well as assigning the result to a local variable in...

  7. How to wait for async method to complete? - Stack Overflow

    The most important thing to know about async and await is that await doesn't wait for the associated call to complete. What await does is it returns the result of the operation immediately and synchronously …

  8. What is the difference between Asynchronous calls and Callbacks

    Mar 25, 2016 · Asynchronous: Asynchronous calls do not block (or wait) for the API call to return from the server. Execution continues on in your program, and when the call returns from the server, a …

  9. Asynchronous Requests with Python requests - Stack Overflow

    Feb 2, 2012 · The asynchronous functionality was moved to grequests after this question was written. However, you could just replace requests with grequests below and it should work.

  10. What does async actually do in FastAPI? - Stack Overflow

    Feb 15, 2023 · FastAPI Docs: You can mix def and async def in your path operation functions as much as you need and define each one using the best option for you. FastAPI will do the right thing with …