Tagged Questions
The blocking tag has no wiki summary.
21
votes
6answers
4k views
asynchronous vs non-blocking
What is the difference between asynchronous and non-blocking calls? Also between blocking and synchronous calls(with examples please)?
Thanks.
18
votes
4answers
7k views
How would you implement a basic event-loop?
If you have worked with gui toolkits, you know that there is a event-loop/main-loop that should be executed after everything is done, and that will keep the application alive and responsive to ...
13
votes
2answers
1k views
How do I write non blocking code in node.js
I can write non blocking IO in node.js very easily, It's what the entire library is set up for.
But any computation done is blocking. Any message passing over Event emitters are blocking.
For ...
13
votes
9answers
3k views
How to prevent ad blocker from blocking ads on an app
One of my users let the cat out of the bag and told me they were using one of my free apps, which is monetized by ads, but they were blocking the ads with an ad blocker. They told me this mockingly, ...
13
votes
3answers
1k views
Is there a non-blocking version of MessageBox.Show (or something like it)?
Long-delayed update
I'm accepting MUG4N's answer to this question, and I also want to respond to some of the criticisms that were raised against it.
ChrisF said:
...you can't make UI calls ...
13
votes
5answers
20k views
java inputstream read blocking
According to the java api, the InputStream.read() is described as:
If no byte is available because the
end of the stream has been reached,
the value -1 is returned. This method
blocks until ...
13
votes
6answers
13k views
Polling the keyboard in python
How can I poll the keyboard from a console python app? Specifically, I would like to do something akin to this in the midst of a lot of other I/O activities (socket selects, serial port access, ...
12
votes
3answers
3k views
How to interrupt a BlockingQueue which is blocking on take()?
I have a class that takes objects from a BlockingQueue and processes them by calling take() in a continuous loop. At some point I know that no more objects will be added to the queue. How do I ...
11
votes
1answer
442 views
Twisted: Making code non-blocking
I'm a bit puzzled about how to write asynchronous code in python/twisted. Suppose (for arguments sake) I am exposing a function to the world that will take a number and return True/False if it is ...
10
votes
4answers
3k views
How can I interrupt a ServerSocket accept() method?
In my main thread I have a while(listening) loop which calls accept() on my ServerSocket object, then starts a new client thread and adds it to a Collection when a new client is accepted.
I also have ...
9
votes
3answers
116 views
Is non-blocking I/O really faster than multi-threaded blocking I/O? How?
I searched the web on some technical details about blocking I/O and non blocking I/O and I found several people stating that non-blocking I/O would be faster than blocking I/O. For example in this ...
9
votes
7answers
784 views
Garbage Collection and Threads
AFAIK when a GC is doing its thing the VM blocks all running threads -- or at least when it is compacting the heap. Is this the case in modern implementions of the CLR and the JVM (Production ...
8
votes
5answers
3k views
sleep() in Javascript
Suppose I want to block Javascript execution for certain time for some weird reason, how can I do that. There is no sleep() in JS. Pls don't say do a while() loop because that's bad. I can do a ...
8
votes
1answer
911 views
BlockingCollection(T) performance
For a while at my company we've used a home-grown ObjectPool<T> implementation that provides blocking access to its contents. It's pretty straightforward: a Queue<T>, an object to lock on, ...
8
votes
3answers
6k views
What is meaning of 'Blocking' in Firebug Net Panel?
I'm using Firebug 1.5.2 and while testing a site before production release i can see a huge amount of time consumed by 'Blocking' parts of the requests.
What exactly does the 'Blocking' mean?
8
votes
2answers
3k views
Lua - get command line input from user?
In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?
7
votes
2answers
71 views
Why is “Multiplexed, non-blocking I/O, [..] much more scalable than thread-oriented, blocking I/O”?
I'm reading about Channels in the JDK 7 docs (here), and stumbled upon this:
Multiplexed, non-blocking I/O, which is much more scalable than thread-oriented, blocking I/O, [...]
Is there a ...
7
votes
6answers
304 views
How to achieve lock-free, but blocking behavior?
I'm implementing a lock-free single producer single consumer queue for an intensive network application. I have a bunch of worker threads receiving work in their own separate queues, which they then ...
7
votes
4answers
198 views
Remove blocking from a method
This is homework.
I do not want the solution, just a small number of links or ideas.
Simply speaking what I want to do is,
Simple example :
public class Example
{
public void method()
{
...
7
votes
2answers
2k views
What does InputStream.available() do in Java?
What does InputStream.available() do in Java? I read the documentation, but I still cannot make it out.
The doc says:
Returns the number of bytes that can be read (or skipped over) from this ...
7
votes
4answers
3k views
C# : Blocking a function call until condition met
I am developing a C# Winforms application, part of the application will be uploading files to a webserver using AsyncUpload (using it,due to the need to use a porgress callback) , In the C# program
...
7
votes
2answers
727 views
Wrapping an asynchronous computation into a synchronous (blocking) computation
similar questions:
Pattern for wrapping an Asynchronous JavaScript function to make it synchronous
Wrapping an asynchronous method synchronously in C#
I have an object with a method I would like ...
7
votes
2answers
2k views
Event Loop vs Multithread blocking IO
I was reading a comment about server architecture.
http://news.ycombinator.com/item?id=520077
In this comment, the person says 3 things:
The event loop, time and again, has been shown to truly ...
7
votes
6answers
2k views
Google Analytics - Blocks HTML/page rendering
I have used the "Better Google Analytics JavaScript that doesn’t block page downloading" to load Google Analytics dynamically so that it will not block HTML / page rendering.
However, it appears ...
7
votes
1answer
8k views
How do I perform a non-blocking fopen on a named pipe (mkfifo)?
If I have a program which creates and attempts to open a named pipe using mkfifo, how can I open a pipe for reading or writing without blocking?
Specifically, I'm writing a C program which can be run ...
6
votes
3answers
868 views
Advantages of Java NIO in blocking mode versus traditional I/O?
I have pretty much already decided not to use asynchronous, non-blocking Java NIO. The complexity versus benefit is very questionable in general, and I think it's not worth it in this project ...
6
votes
2answers
131 views
C++ object termination notification
In a C++ program, I have two reference counted objects: King and Heir. Heir needs to block until King is destroyed. King is a reference counted object which will be destroyed when it's reference ...
6
votes
2answers
876 views
How to run a jQuery function after all and any other javascript has run
I have a photo gallery page hosted on a CMS (Squarespace) which has some of it's own scripts which load the thumbnails asynchronously.
The actual large images however are not preloaded, so I decided ...
6
votes
6answers
2k views
IE8 blocking JavaScript Cookies
Here is one that is throwing me for a loop. I am trying to set a simple cookie that has one name:value pair on IE8. Tested on FF and it works fine. IE8 keeps blocking it.
I have read about the P3P ...
6
votes
5answers
4k views
Concurrent and Blocking Queue in Java
I have the classic problem of a thread pushing events to the incoming queue of a second thread. Only this time, I am very interested about performance. What I want to achieve is:
I want concurrent ...
6
votes
3answers
2k views
SQL Server ALTER field NOT NULL takes forever
I want to alter a field from a table which has about 4 million records. I ensured that all of these fields values are NOT NULL and want to ALTER this field to NOT NULL
ALTER TABLE dbo.MyTable
ALTER ...
6
votes
6answers
2k views
C++ - how does Sleep() and cin work?
Just curious. How does actually the function Sleep() work (declared in windows.h)? Maybe not just that implementation, but anyone. With that I mean - how is it implemented? How can it make the code ...
5
votes
3answers
65 views
Block script in IE
I have a fancy script that is nice, but not essential and surprise surprise, doesn't play nice with IE.
How do I 'comment it out' for IE?
I know I can use the following to include statements for IE, ...
5
votes
2answers
169 views
Is this implementation of a Blocking Queue safe?
I'm trying to implement a queue which blocks on the Pop operation if it's empty, and unblocks as soon as a new element is pushed. I'm afraid I might have some race condition; I tried to look at some ...
5
votes
4answers
196 views
improve locality and decrease Cache pollution in a medical image reconstruction implementation
I'm doing a research for my University related to an Image reconstruction algorithm for medical usage.
I'm stuck in something up to 3 weeks, I need to improve the performance of the following code:
...
5
votes
4answers
396 views
Do we need to use MappedByteBuffer.force() to flush data to disk?
I am using MappedByteBuffer to speed up file read/write operations(). My questions as below:
I am not sure if I need to use .force() method to flush the content to disk or not. It seems like without ...
5
votes
7answers
519 views
What is the purpose of hard disk direct memory access?
At first glance it seems like a good idea to let the hard disk write to RAM on its own, without CPU instructions copying data, particularly with the success of asynchronous networking in mind. But the ...
5
votes
1answer
727 views
Query a PHP semaphore without blocking?
Is it possible to query a semaphore created with sem_get without actually blocking like the sem_acquire function does?
Cheers,
Dan.
5
votes
13answers
5k views
How to prevent downloading images and video files from my website
it is possible ?
what is the best way to do this ?
5
votes
2answers
929 views
If MessageBox()/related are synchronous, why doesn't my message loop freeze?
Why is it that if I call a seemingly synchronous Windows function like MessageBox() inside of my message loop, the loop itself doesn't freeze as if I called Sleep() (or a similar function) instead? To ...
5
votes
5answers
3k views
second $(document).ready event jQuery
I'm using some external jQuery with $(document).ready() to insert adverts after the document ready event has fired, something like:
$(document).ready( function() {
...
4
votes
1answer
209 views
Thread message loop for a thread with a hidden window?
I have a Delphi 6 application that has a thread dedicated to communicating with a foreign application that uses SendMessage() and WM_COPYDATA messages to interface with external programs. Therefore, ...
4
votes
5answers
579 views
BlackBerry: “Application is not responding; process terminated” because of UiApplication.getUiApplication().popScreen()?
I have a Blackberry application which, when run in some emulators with touch support (ex: 9500, 9520, 9530, 9550), terminates with:
"Application is not responding; process XPTO terminated"
Using ...
4
votes
5answers
701 views
in golang, does it make sense to write non-blocking code?
coming from node.js point of view, where all code is non-blocking.
in golang, non-blocking is easily achieved using channels.
if one were writing a node.js type server in go, does it make sense to ...
4
votes
3answers
600 views
(python) matplotlib pyplot show() .. blocking or not?
i have run into this trouble with show() over and over again, and i'm sure i'm doing something wrong but not sure of the 'correct' way to do what i want.
and [i think] what i want is some way to ...
4
votes
3answers
2k views
Oracle select for update behaviour
The problem we try to solve looks like this.
We have a table full of rows which represent cards. The purpose of reservation transaction is to assing a card to a client
A card can not belong to many ...
4
votes
1answer
267 views
Should sockets be non-blocking to work with select in Python?
Should sockets be set to non-blocking when used with select.select in Python?
What difference does it make if they are or aren't?
Occasionally I find that calling send on a socket that returns ...
4
votes
4answers
146 views
Implementing a singleton class and (b)locking issues?
I was wondering about implementing a singleton class following http://code.activestate.com/recipes/52558-the-singleton-pattern-implemented-with-python/ but was wondering about any (b)locking issues. ...
4
votes
4answers
352 views
Why does my GUI still hang even after using SwingUtilities.invokeLater?
I have this ActionListener that gets called in the EDT. My plot() function is computationally heavy, it can easily take five seconds. It made the GUI hang as expected. I added the ...
4
votes
3answers
174 views
What happens to a Thread that fails to acquire a lock?
What happens to a Thread that fails to acquire a lock (non-spin)? It goes to the BLOCKED state. How does it gets executed again?
Lock lck = new ReentrantLock();
lck.lock()
try
{
}
finally
{
...