Tagged Questions
The event-driven-design tag has no wiki summary.
7
votes
5answers
2k views
jQuery plugin for Event Driven Architecture?
Are there any Event Driven Architecture jQuery plugins?
Step 1: Subscribing
The subscribers subscribe to the event handler in the middle, and pass in a callback method, as well as the name of the ...
6
votes
1answer
76 views
Decoupling Spring MVC's Controller from the HTTPServlet
I have been working with Spring for a while now to realize that not all of the incoming requests I receive in my app are HTTP-based. Some requests are email-based, and need email-based responses, ...
4
votes
2answers
161 views
How can I create an “event-driven” background thread in Java?
I like the simplicity of invokeLater() for sending units of work to the AWT EDT. It would be nice to have a similar mechanism for sending work requests to a background thread (such as SwingWorker) ...
4
votes
2answers
644 views
Java and event driven programming
I am using javaeventing to write an even driven shell to access a database. So, my use case is:
open up the shell in command line.
Now, the shell connects to database and listens for the command ...
4
votes
2answers
192 views
Event driven architecture…infinite loop
I have an event driven architecture where A is waiting for a change from B and B is waiting for a change from C and C is waiting for a change from A, forming a cycle.
Now, if B changes, then A fires ...
4
votes
2answers
889 views
Event driven vs sequential programming
One of my friend recently had an argument in his team about the pros and cons of event driven programming vs sequential programming.
What are your views about it?
3
votes
4answers
253 views
best practices for handling UI events
I have put the all the binding code for UI events on OnCreate(). It has made my OnCreate() huge.
Is there pattern around implementing UI events in android ? Can I add methods in View xml file and ...
3
votes
3answers
302 views
Multi-threaded Event Dispatching
I am developing a C++ application that will use Lua scripts for external add-ons. The add-ons are entirely event-driven; handlers are registered with the host application when the script is loaded, ...
3
votes
2answers
318 views
Design question on Python network programming
I'm currently writing a project in Python which has a client and a server part. I have troubles with the network communication, so I need to explain some things...
The client mainly does operations ...
3
votes
2answers
468 views
Is the “sender” in Button_Click(object sender… really the sender?
Ted Faison in a podcast on event-based software design mentioned that "sender" and "self" objects in .NET, C++ and Java event statements such as:
private void Button_Click(object sender, ...
2
votes
3answers
334 views
Event-driven architecture and hooks in PHP
I am planning on working on a game that has a PHP back-end to communicate with the data repository. I was thinking about it and concluded that the best design paradigm to follow for our game would be ...
2
votes
2answers
183 views
Event-driven programming in PL/SQL
I have two PL/SQL systems, residing in two separate databases. SystemA will need to populate SystemB's tables. This will probably be done over a datalink. Everytime a set of records is inserted in ...
2
votes
2answers
276 views
Why are commands and events separately represented?
What is the difference between commands and events in architectures that emphasize events? The only distinction I can see is that commands are usually sourced/invoked by actors outside the system, ...
2
votes
2answers
548 views
C# Event Handlers Using an Enum
I have a StatusChanged event that is raised by my object when its status changes - however, the application needs to carry out additional actions based on what the new status is.
e.g If the new ...
2
votes
2answers
327 views
Is this a decent Event Driven approach for a windows service?
I'm reading up on event-driven design. I am having trouble getting my head around some of it in practice. I'm considering using this for a windows service that monitors, parses, and handles ...
1
vote
1answer
127 views
Designing a GUI with event-driven programming
I want to design a GUI (in linux) which will contain various types of components (represented by different types of buttons in the left side of the GUI, like button type A, B etc) and using those ...
1
vote
1answer
190 views
Coroutine vs Event driven programming
Regarding the example in wikipedia:
http://en.wikipedia.org/wiki/Coroutine
var q := new queue
coroutine produce
loop
while q is not full
create some new items
add ...
1
vote
2answers
431 views
How to sketch out an event-driven system?
I'm trying to design a system in Node.js (an attempt at solving one of my earlier problems, using Node's concurrency) but I'm running into trouble figuring out how to draw a plan of how the thing ...
1
vote
3answers
427 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
2answers
311 views
javascript (node.js): unit testing code that fires multiple events
Greetings,
I am attempting to write unit test code (caolan's nodeunit) that will test for multiple event firings.
So, I am testing
function A() {
this.fireaway = function() {
...
1
vote
3answers
143 views
How can I handle all my errors/messages in one place on an Asp.Net page?
I'm looking for some guidance here.
On my site I put things in Web user controls. For example, I will have a NewsItem Control, an Article Control, a ContactForm control.
These will appear in various ...
1
vote
2answers
468 views
Secondary Message Loop vs Separate Input Thread
I am talking about a Windows desktop application. I am looking to write a function such as SelectObject (for example) which blocks the caller till the user clicks on an object in the application's ...
0
votes
1answer
115 views
node.js asynchronous initialization issue
I am creating a node.js module which communicates with a program through XML-RPC. The API for this program changed recently after a certain version. For this reason, when a client is created ...
0
votes
1answer
129 views
Staged Event Driven Architecture - Weblogic
When should I go for Staged Event Driven Architecture ? Do you see any issues in implementing SEDA in weblogic by having multiple Queues/MDBs as stages ? Any insights on disadvantages using SEDA ?
0
votes
2answers
59 views
Passing http form values to a C program
I've been assigned to upgrade an embedded application written in C. The application is configured via a web interface.
When the user modifies the web application a file is written to ...
0
votes
3answers
2k views
Asynchronous programming using Java
Where can I find asynchronous programming example using Java? I'm interested in finding patterns in asynchronous programming for building applications that present responsiveness (preventing ...
0
votes
1answer
89 views
Event driven with Java and Javascript?
I am trying to perform some computations on a server. For this, the client initially inputs some data which I am capturing through Javascript. Now, I would perhaps make a XMLHttpRequest to a server to ...
0
votes
4answers
462 views
Problems using ActiveMQ + activemessaging gem in ruby
I have AMQ + Activemessaging running in a Rails App.
I'm facing a problem with activemessaging not acting on messages when they are received. This is solved once i restart the client. Apparently, it ...
0
votes
1answer
33 views
EagerReadDerivation: balancing the benefits with the costs
I'm studying Domain-Driven Design and Distributed DDD for an upcoming Silverlight application I'm going to be working on. The EagerReadDerivation pattern seems like it would improve the scalability ...