Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
3answers
4k views

How to integrate Boost.Asio main loop in GUI framework like Qt4 or GTK

Is there any way to integrate Boost.Asio with Qt4 (prefered) or GTK main loop? GTK provides poll(2) like API so technically is should be possible. Qt provides its own networking layer, however I ...
8
votes
3answers
192 views

What's the cleanest way to write a non-blocking for loop in javascript?

So, I've been thinking about a brain teaser - what if I had a large object I for some reason had to iterate through in node js, and didn't want to block the event loop while I was doing that? Here's ...
5
votes
1answer
370 views

javascript event-loop question

I wonder how the event-loop works in javascript, I am using node.js but I guess that the same question apply to browsers. I have some async call (let's say setTimeout or $.ajax or fs.readFile) and ...
3
votes
3answers
297 views

Why does this javascript block in Node.js?

I have the following simple http server using Node.js: var http = require('http'); var server = http.createServer(function(req, res) { var counter = 0; for(var i = 1; i <= 30; i++) { ...
3
votes
2answers
172 views

are there any simple/example event-driven webservers in C?

There are many example thread based web servers online, but I haven't really seen anything that gives a good example of an event-loop based one (without being very complex, e.g. lighttp and nginx). ...
3
votes
2answers
243 views

I don't fully understand JavaScript Threading

Before I dive into the question. Let me state that by Event Loop I am referring to http://en.wikipedia.org/wiki/Event_loop. This is something that browsers implement. For more information, read this: ...
2
votes
2answers
136 views

Possible to run multiple main loops?

I'm working with both libfuse and the glib event interface and I've run into an issue where I need to run multiple main loops concurrently (glib's g_main_loop_run and fuse_loop_mt). I've already ...
2
votes
1answer
701 views

What is a browser event loop?

I have been doing some web application programming using GWT and have been confused by the term "browser event loop". I have encountered situations where I need to execute deferred commands and "do ...
2
votes
3answers
1k views

Asynchronous event loop design and issues

I'm designing event loop for asynchronous socket IO using epoll/devpoll/kqueue/poll/select (including windows-select). I have two options of performing, IO operation: Non-blocking mode, poll on ...
1
vote
3answers
74 views

Suggestions For Java Event-Loop Libraries

I am looking for something like the JavaScript setTimeout, but with a Runnable, with the following restrictions: Does not require individual dedicated threads per timeout. Already developed and ...
1
vote
1answer
120 views

An efficient event loop implementation? [closed]

Possible Duplicate: How would you implement a basic event-loop? Not really a language-specific question. What could be an efficient implementation of event loop? So far I've only ...
1
vote
3answers
215 views

How to execute a method automatically after entering Qt event loop?

I would like to execute a method which can only be called once my QApplication is displayed, i.e. when it has entered its main event loop exec_(). I'm new to Qt4 (using PyQt4): i was hoping to have a ...
1
vote
1answer
322 views

Python: socket server framework like Tcl “socket -server”

I'm looking to reimplement some Tcl code that uses the socket -server construct [1]. What's the best option in Python for a small, industrial strength multi-user network-based server that includes ...
0
votes
1answer
29 views

How can I make a given script to be evaluated after each iteration in vwait forever?

vwait forever runs the events loop until the exit command. I have some stuff to do during each iteration of the event loop. How can I do that?
0
votes
1answer
39 views

Is Application.DoEvents sending messages to a separate thread?

I've been trying to understand event loops (not going so well) in general and I've read that the windows messaging loop is single threaded. If it is, how can Application.DoEvents work? Doesn't an ...
0
votes
3answers
43 views

alert-ing return value of ajax call

(1. do you find it useful to have a global jquery ajax 'helper' that you can call ajax(url,data,async) ? ) function ajax(ajax_url, ajax_data, ajax_async){ ajax_async = typeof(ajax_async) != ...
0
votes
1answer
72 views

Qt radio button switch display delay

I'm having a Qt application here where I have a main window with 5 QPushButtons that are aligned vertically. These buttons work in a radio-group manner. This means, that they are checkable and ...
0
votes
0answers
64 views

Ruby C Extension: run an event loop concurrently

I'm implementing a simple windowing library as a Ruby C extension. Windows have a handle_events! method that enters their native event loop. The problem is that I want one event loop per window and ...
0
votes
2answers
35 views

Execute code after a window is displayed

I'm working on a windows application where I'm implementing the whole event loop and everything like that myself (there's a reason for that). In one place, I need to execute some code AFTER a window ...
0
votes
0answers
52 views

php - any way to do “real” fascgi?

I have been using perl and ruby in a fcgi setting and was planning to migrate a large code base of php from mod_php to fcgi, I looked at the php site and saw they supported fcgi and 5.3 has fpm to ...
0
votes
0answers
36 views

Forbid NSAppleScript to re-enter event loop

I have the following problem: When use NSAppleScript executeAndReturnError it reenters the event loop inside itself so it handles events which should be handled only after that function is returned. ...
0
votes
2answers
179 views

Executing slot on every application's event loop iteration

How can I call my slot on every iteration of application's event loop? Only way I know is to use QTimer and on every timeout (every millisecond) signal I can call my slot. But I don't like this ...
0
votes
3answers
472 views

Other language (frameworks) where the event loop is exposed as a language construct?

At http://nodejs.org/#about it says the following: "Node is similar in design to and influenced by systems like Ruby's Event Machine or Python's Twisted. Node takes the event model a bit ...
0
votes
1answer
851 views

GLib - main event loop in C++

I need to implement my own main event loop in C++ which will be based on GLib library. I don't know where to begin. I studied some materials about GLib, but it doesn't help me to know, how implement ...
0
votes
1answer
625 views

Creating a QThread event loop in an existing non QT thread

My code is a plugin of a host software which gets limited processing time. Therefore, I create a second thread (via system API) and start QApplication there. That way, the GUI runs smoothly. Now, I ...
0
votes
3answers
235 views

why do you need an event-loop for asynchronous requests (e.g., AJAX long polling)

I understand that it's considered bad design to use a normal, threaded webserver (e.g., Apache) for AJAX long polling…but I don't really understand why. Is it because each longpolling request takes ...
0
votes
1answer
124 views

GLUT: any way to add a “file readable” hook to the event loop?

I'd like to open a socket and hang a readable event on the GLUT event loop... any ideas on how to do this? Portable standard GLUT code is best, but I'm open to platform-specific hacks as well. ...
-1
votes
2answers
345 views

Event loop implementation for Python 3?

Does anyone know of an event loop library (or bindings) available for Python 3? It's okay if it only does UNIX systems, though I would prefer something that does Windows as well. ETA: I realize ...