Top "Nonblocking" questions

Non-blocking mode I/O either transfers at least one byte or returns immediately with an error or end of stream.

A non-blocking read on a subprocess.PIPE in Python

I'm using the subprocess module to start a subprocess and connect to its output stream (standard output). I want to …

python io subprocess nonblocking
What does Python's socket.recv() return for non-blocking sockets if no data is received until a timeout occurs?

Basically, I've read in several places that socket.recv() will return whatever it can read, or an empty string signalling …

python sockets nonblocking recv
Polling the keyboard (detect a keypress) in python

How can I poll the keyboard from a console python app? Specifically, I would like to do something akin to …

python console keyboard blocking nonblocking
C non-blocking keyboard input

I'm trying to write a program in C (on Linux) that loops until the user presses a key, but shouldn't …

c linux asynchronous input nonblocking
Simplest way to do a fire and forget method in C#?

I saw in WCF they have the [OperationContract(IsOneWay = true)] attribute. But WCF seems kind of slow and heavy just …

c# .net nonblocking
PySerial non-blocking read loop

I am reading serial data like this: connected = False port = 'COM4' baud = 9600 ser = serial.Serial(port, baud, timeout=0) while …

python python-3.x nonblocking pyserial
What is non-blocking or asynchronous I/O in Node.js?

In the context of Server Side Javascript engines, what is non-blocking I/O or asynchronous I/O? I see this …

node.js asynchronous nonblocking serverside-javascript
Is asynchronous jdbc call possible?

I wonder if there is a way to make asynchronous calls to a database? For instance, imagine that I've a …

java scala jdbc asynchronous nonblocking
How do you do non-blocking console I/O on Linux in C?

How do you do nonblocking console IO on Linux/OS X in C?

c linux macos io nonblocking
Blocking IO vs non-blocking IO; looking for good articles

Once upon a time I bumped into Introduction to Indy article and can't stop thinking about blocking vs non-blocking IO …

events blocking nonblocking io