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).

What function gets put into EventLoop in NodeJs and JS

I've been reading some NodeJs articles in order to understand its async nature during which I found this and really …

javascript node.js asynchronous event-driven event-loop
Writing Maintainable Event-Driven Code

I have just recently started playing with event-driven architectures, coming from a pretty standard object-oriented mindset. The first thing I …

architecture documentation node.js maintainability event-driven
Event-driven simulation class

I am working through some of the exercises in The C++ Programming Language by Bjarne Stroustrup. I am confused by …

c++ simulation event-driven
why Redis is single threaded(event driven)

I am trying to understanding basics of Redis. One that that keep coming everywhere is, Redis is single threaded that …

multithreading redis event-driven single-threaded
What's the best practice to do event driven development in Angular.js apps?

I am adding some websocket functional to our angular app. The Websocket object is wrapped in a service. Ideally we …

javascript angularjs event-driven event-driven-design
What is event-driven programming?

What is event-driven programming and has event-driven programming anything to do with threading? I came to this question reading about …

multithreading process distributed event-driven