Top "Event-driven" questions

The event-driven paradigm of programming centralizes all waiting for events to one generalized loop that delivers (dispatches) events to registered listeners (event handlers).

Are there any module that works like django admin in Nodejs?

I am search an admin panel like django’s, why nodejs not have one? could you giveme links o a …

javascript html node.js sockets event-driven
Creating a simple event driven architecture

Having a bit of trouble with a project at the moment. I am implementing a game and I'd like to …

java events architecture event-driven
EventMachine vs Node.js

I'm going to develop a collaborative site, and one of the features will be collaborative editing with realtime changes. i.…

ruby-on-rails node.js eventmachine event-driven commonjs
Python - How can I make this code asynchronous?

Here's some code that illustrates my problem: def blocking1(): while True: yield 'first blocking function example' def blocking2(): while True: …

python asynchronous twisted nonblocking event-driven
Pattern to manage views in backbone

Coming from GWT, Backbone seems to miss a built-in solution on how to handle the life-cycle of a view. In …

design-patterns backbone.js event-driven
Help with event driven TCP server

I'm working on an "application system" , where I also need to make a server application. I'm working in C# (.NET 4.0). …

c# tcp event-driven
Non-blocking (async) DNS resolving in Java

Is there a clean way to resolve a DNS query (get IP by hostname) in Java asynchronously, in non-blocking way (…

java asynchronous dns nonblocking event-driven
Event/Observer Driven Ruby on Rails

I have an application that lends itself to an event/listener model. Several different kinds of data get published (event), …

ruby ruby-on-rails-3 listener event-driven
I want to wait on both a file descriptor and a mutex, what's the recommended way to do this?

I would like to spawn off threads to perform certain tasks, and use a thread-safe queue to communicate with them. …

c++ python linux multithreading event-driven
How to read large binary files in node js without a blocking loop?

I am trying to learn some basics of event driven programming. So for an exercise I am trying to write …

node.js event-driven event-driven-design