Tagged Questions
The event-driven tag has no wiki summary.
35
votes
3answers
11k views
C#: Automating the InvokeRequired code pattern
I have become painfully aware of just how often one needs to write the following code pattern in event-driven GUI code, where
private void DoGUISwitch() {
// cruisin for a bruisin' through ...
33
votes
7answers
5k views
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 noticed was that the difficulty in understanding and ...
17
votes
3answers
2k views
What so different about Node.js's event-driven? Can't we do that in ASP.NET's HttpAsyncHandler?
I'm not very experienced in web-programming and stuff,
and I haven't actually code anything in Node.Js yet, just curious about the event-driven approach. It does seems good.
The article explain some ...
11
votes
4answers
417 views
Good resources to learn about Event Driven Architecture
Looking for books, blogs, web sites or videos.
At the moment I am getting a lot of value from the blogs of Udi Dahan and Greg Young, but I was wondering if there are any other experts out there worth ...
10
votes
5answers
3k views
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.e. when two or more users are editing the same doc, they can see each other ...
9
votes
5answers
1k views
How is Win32 event-driven programming implemented under the hood?
In a Win32 C++ application, we start a message loop that fetches messages from a queue, translates them and then dispatches them. Eventually, each message reaches our WndProc where the associated ...
6
votes
5answers
361 views
In Scala, how would I combine event driven programming with a functional approach?
To clarify what I mean by event driven I'm referring to a situation where I have
def onTrade(...)
Which is called every time a particular stock trades. Suppose I want to track the daily highest ...
5
votes
6answers
747 views
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). The server will mainly collect data from different POS applications / clients ...
4
votes
3answers
35 views
Expression Blend VSM vs Event Driven
I recently used Expression Blend and I found that it has something called Visual State Manager, what is the difference between it and the regular event driven model, and which is better?
4
votes
3answers
243 views
where does node.js fit within the web development context?
I know that node.js is said to be "event-driven I/O" server-side javascript hosted on V8 Javascript engine. I visited the node.js website, and then read the wikipedia entry, but cant quite get the ...
4
votes
3answers
419 views
What's the difference between event-driven and asynchronous? Between epoll and AIO?
Event-driven and asynchronous are often used as synonyms. Are there any differences between the two?
Also, what is the difference between epoll and aio? How do they fit together?
Lastly, I've read ...
4
votes
5answers
257 views
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. I would also like to be doing IO to a variety of file descriptors while I'm waiting.
...
3
votes
2answers
140 views
Should I be using a Java “worker thread” for this CPU simulation app?
I'm writing an emulator of an old computer in Java/Swing, and I think I've identified the design problem that I'm having. As idiosyncratic as this application is, I suspect someone will find a ...
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
4answers
593 views
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:
yield 'second blocking ...
3
votes
2answers
314 views
How is event driven programming implemented?
I was looking on how the twisted and node.js frameworks work and I am
trying to understand exactly how the operating system supports I/O
operations using callbacks.
I understand it's good because we ...
3
votes
2answers
699 views
What is SEDA (Staged Event Driven Architecture)?
SEDA: An Architecture for Highly Concurrent Server Applications
"SEDA is an acronym for staged event-driven architecture, and decomposes a complex, event-driven application into a set of stages ...
3
votes
2answers
211 views
Which books or resources would you recommend for learning event-driven programming?
The question says it all, really. I am looking for books or resources I can use to self-teach regarding event-driven programming. I have a decent grasp on the program flow of smaller programs that ...
2
votes
1answer
57 views
Cocoa's Event Driven System: where do background tasks run?
On Mac OS X, Cocoa is event driven. By this I mean each thing is driven by the UI - the user clicking something or moving over a certain area results in an event handler being called. Main simply ...
2
votes
1answer
237 views
Pattern to manage views in backbone
Coming from GWT, Backbone seems to miss a build in solution on how to handle the live circle of a view. In GWT every activity, which is more or less the equivalent to a view in Backbone, is managed by ...
2
votes
2answers
262 views
Writing a console-based C++ IRC-client
I'm learning C++ and so I've decided to begin coding a IRC-Client.
I basically want it to be consolebased, and I've looked in to libraries such as ncurses, but I don't really know whether or not this ...
2
votes
2answers
84 views
How to “keep trying until it works” with an event-driven model?
I'm writing code that looks like this:
function someFunction()
{
doStuffWithCallback(function(success)
{
if(success)
{
...
// do stuff here
...
2
votes
3answers
174 views
What stands behind asynchronicity in Javascript - event-driven system
please help me understand this.
You have a function that calls a few methods:
function() {
methodA(function(){...});
methodB();
methodC();
}
From languages that don't have callbacks or ...
2
votes
4answers
2k views
onclick event not working in JavaScript
I have some JavaScript code in an HTML page with a button. I have a function called 'click()' that handles the onClick event of the button. The code for the button is as follows:
<input ...
2
votes
2answers
371 views
jQuery custom events on non-DOM objects
I read some code recently that does something like this:
bob = {'name': 'Bob Smith', 'rank': 7};
$(bob).bind("nameChanged", function () { /* ... */});
// ...
$(bob).trigger("nameChanged");
This ...
2
votes
1answer
697 views
How is nodejs different from running libevent?
I am curious what gives nodeJS the super concurrency that it gets right now. I have not actually used with either of these that much, just played with both in my spare time.
Sounds like the 1000s of ...
2
votes
2answers
412 views
Is there a simple .NET code generator for a Event-driven finite state machine?
Is there a simple .NET code generator for a Event-driven finite state machine?
I am tired of doing this by hand for user-interface objects. I just need the enum definition, the switch statement, and ...
2
votes
6answers
395 views
Can you make me understand dynamic, abstract event objects easily?
I've written C++ event-driven apps using MFC for GUI buttons, and I use HTML events like onmousedown to trigger some Javascript in a webpage. The idea of event-driven programming is intuitive when ...
2
votes
8answers
2k views
Event-driven simulation class
I am working through some of the exercises in The C++ Programming Language by Bjarne Stroustrup. I am confused by problem 11 at the end of Chapter 12:
(*5) Design and implement a library for writing ...
1
vote
4answers
82 views
Event Based == Asynchronous?
When I read that something is "event based", is that the same as "asynchronous"?
1
vote
0answers
57 views
Any examples of event-based jQuery programming structure?
I've built a program that I think could benefit from a shift toward using jQuery's events (bind() and trigger()) instead of the typical function-calling programming structure. For example, instead of:
...
1
vote
1answer
347 views
Android smoothScrollTo not invoking onScrollStateChanged
I am using smoothScrollBy() to scroll to a specific position in a ListView. I would like to be notified when the ListView is done scrolling to integrate it with the current onScrollStateChanged() ...
1
vote
0answers
43 views
Javaspaces, Rest and event-driven architectures
I'd like to know more about the convergence of Javaspaces, REST and Event-driven architectures. Where I could look for information about all technologies together, please?
Thanks ^_^
1
vote
2answers
71 views
What is the correct sequence for bliting surfaces to the screen in pygame?
I am creating a simple mp3 player and my first task was to create a simple button that a user could press. I created a class called Button which handled this behavior and detects if a user has clicked ...
1
vote
3answers
302 views
Pool memory allocation in a priority queue
I am writing an event based simulator, in which each event calls a processing function (node) that can generate new events, and so on.
A timestamp is associated to each events and they need to be ...
1
vote
2answers
656 views
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), then many different things may or may not need to act on that data ...
1
vote
3answers
431 views
for loop over event driven code?
In a redis datastore I have a list of keys, I want to iterate over that list of keys and get those values from redis. The catch is I am using an event driven language, javascript via node.js
If ...
1
vote
3answers
174 views
Sequential vs multi-threaded Accounting Events Processing
We are working on an event-driven accounting engine and so far we are doing everything in a batch/sequential manner.
Problem is there are thousands of events created per day and processing everything ...
1
vote
1answer
65 views
Opting for a messaging system over web services such as SOAP
I'm working on a project at the moment that involves building a system in conjunction with another technical partner. The system will provide "monitoring" type functionality and operations will be ...
1
vote
2answers
148 views
Good resources for learning event driven flash development?
What are good books / site where you can learn the best practices for event driven programming in actionscript (3 obviously).
I've got a big project coming up and, to be honest, my flash is usually ...
1
vote
2answers
120 views
Watching a folder using Win32
I'm looking for a straightforward way to watch the contents of a folder using Win32 (minimum target is XP). If possible, it would be nice to use an event-driven approach rather than a polling-type ...
1
vote
3answers
617 views
Capturing the Click event in an Excel spreadsheet
How can I capture the event in Excel when a user clicks on a cell. I want to be able to use this event to trigger some code to count how many times the user clicks on several different cells in a ...
0
votes
0answers
25 views
Event Driven design tool
Recently I have been experimenting with node.js and I find its event-driven nature very nice. I was wandering if there are any tools for event-driven design, preferably open source. Do you know/use ...
0
votes
0answers
69 views
MVC Async Controller
I'm trying to get my head around MVC Async Controllers.
In order to test, I wanted to create a simple AsyncWaiter class which implements an event based asynchronous pattern to make the thread wait a ...
0
votes
1answer
56 views
What's the advantage of “one thread per connection” in an HTTP server?
If I was programming an HTTP server, why should I consider handling every HTTP connection in its own thread?
I've read plenty of arguments that event-driven HTTP servers are faster and more scalable ...
0
votes
1answer
46 views
Advice - Real time data processing from client to server
I am looking for advice/guidance on how to achieve the following:
I have a circuit mounted and connected to an Arduino and I am able to easily retrieve data from it, using Python and the pySerial ...
0
votes
3answers
89 views
Will this lead to a race condition in event-driven programming?
I am writing a small agent-based interaction simulation in a discrete simulator and am beginning to write some code that looks like the following. I have not some event-driven programming before but ...
0
votes
1answer
30 views
What are the different ways of handling events in a publish-subscribe system?
In a publish-subscribe system where each subscriber waits for several types of events, is there a better handling solution than a simple switch ?
let's say we have 2 publishers, Pub1 and Pub2; Pub1 ...
0
votes
1answer
70 views
Clean way to move an event-driven design into TPL?
I have a C# project (Winforms) that has a number of browser controls on it. I want to disable a timer, tell the browser controls to all navigate, and then re-enable the timer once all the browsers ...
0
votes
2answers
63 views
Rails: How to have no response until an event triggers
I don't know if Rails has a way to do as following:
Receive a request
Put the request into the monitor list until an event triggers
Finish the request but does not return any response to the client ...