SyntaxFix
Write A Post
Hire A Developer
Questions
🔍
[asynchronous] asynchronous vs non-blocking
Home
Question
asynchronous vs non-blocking
Asynchronous
refers to something done
in parallel
, say is another thread.
Non-blocking
often refers to
polling
, i.e. checking whether given condition holds (socket is readable, device has more data, etc.)
Examples related to
asynchronous
•
How to read file with async/await properly?
•
Use Async/Await with Axios in React.js
•
Waiting until the task finishes
•
How to reject in async/await syntax?
•
React - Display loading screen while DOM is rendering?
•
angular 2 how to return data from subscribe
•
How do I access store state in React Redux?
•
SyntaxError: Unexpected token function - Async Await Nodejs
•
Why does .json() return a promise?
•
Why is setState in reactjs Async instead of Sync?
Examples related to
blocking
•
How to create a sleep/delay in nodejs that is Blocking?
•
Is there a way to get all IP addresses of youtube to block it with Windows Firewall?
•
asynchronous vs non-blocking
•
How to prevent downloading images and video files from my website?
•
Polling the keyboard (detect a keypress) in python
Examples related to
synchronous
•
How to wrap async function calls into a sync function in Node.js or Javascript?
•
What is the difference between synchronous and asynchronous programming (in node.js)
•
How to make JQuery-AJAX request synchronous
•
Simplest way to wait some asynchronous tasks complete, in Javascript?
•
jQuery: Performing synchronous AJAX requests
•
document.createElement("script") synchronously
•
JavaScript: Global variables after Ajax requests
•
asynchronous vs non-blocking
•
How to force Sequential Javascript Execution?
•
Asynchronous vs synchronous execution, what does it really mean?