About 9,780,000 results
Open links in new tab
  1. Is there any reason to use a synchronous XMLHttpRequest?

    Aug 4, 2011 · Synchronous calls block the browser which leads to a terrible user experience. Thus my question. I couldn't think of any good reason to use it.

  2. How to make javascript fetch synchronous? - Stack Overflow

    Jun 24, 2017 · I'm using fetch to get data json from an api. Works fine but I have to use it repeatedly for various calls, thus it needs to be synchronous or else I need some way to …

  3. Asynchronous vs synchronous execution. What is the difference?

    SYNCHRONOUS EXAMPLE: Any process consisting of multiple tasks where the tasks must be executed in sequence, but one must be executed on another machine (Fetch and/or update …

  4. Difference Between Synchronous and Asychnchronus I/O

    Jan 26, 2016 · 16 I have been learning the internals of an operating system and I am confused as to what the basic difference between synchronous and asynchronous I/O is. How does an …

  5. are async/await async or synchronous? - Stack Overflow

    Jun 29, 2022 · When the calling code (synchronous code) execution has run until the call stack is empty, then the JavaScript engine will check its queues. If it finds there is already that promise …

  6. Synchronous database queries with Node.js - Stack Overflow

    Jul 6, 2011 · I have a Node.js/Express app that queries a MySQL db within the route and displays the result to the user. My problem is how do I run the queries and block until both queries are …

  7. How to call asynchronous method from synchronous method in C#?

    17 You can call any asynchronous method from synchronous code, that is, until you need to await on them, in which case they have to be marked as async too.

  8. multithreading - What is the difference between synchronous and ...

    Jul 5, 2013 · As I understand synchronous mode, the client blocks for a while until it receives the packet/ data message from the server. And in async mode, the client carries out another …

  9. What's the difference between Sequential and Synchronous …

    Jan 7, 2018 · Synchronous: the "request and response" happen as part of the same interaction, at the same time -- the code must necessarily block while this happens. Asynchronous: the …

  10. java - How to understand the "synchronous" and "asynchronouns ...

    Feb 28, 2014 · The server keeps listening to this queue. synchronous - consumer.receive (1000): Use this on a client applications that now and then needs to check if a message is intend for …