Event Driven Design is the implementation of requirements through a queue of events that are triggered by user input. Callback functions only create event objects and add them to the queue so state remains unchanged.

learn more… | top users | synonyms

0
votes
0answers
13 views

Event Driven Function's return value, Python, PyQt4

Here is the python code: self.browse=QtGui.QFileDialog self.btn=QtGui.QPushButton('browse image file') self.btn.clicked.connect(self.openimg) def openimg(): ...
0
votes
2answers
25 views

Is event based model used in node the same as the event based model used in C# applications?

I've heard about node.js and event based programming and things like the node event loop. In college I remember that I made an ASP.net web application. The professor said that ASP.net uses an event ...
1
vote
1answer
77 views

State machine event generation in multi-processor architecture

I'm having a small architecture argument with a coworker at the moment. I was hoping some of you could help settle it by strongly suggesting one approach over another. We have a DSP and Cortex-M3 ...
1
vote
1answer
156 views

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 would like our wrapped socket object to have a standard event API so that we can use ...
5
votes
1answer
143 views

Comunicating between views design patterns with events

event handlers are fine when you have a view that reference another view and listens its events, thats perfect for decoupling and reusability. the problem though is sometimes I have views that is not ...
4
votes
3answers
167 views

Event driven design in c

this is a little theoretical question. Imagine a device full of sensors. Now, in case a sensor x detects something, something should happen. Meanwhile, in case something else is detected, like two ...
-1
votes
1answer
85 views

calling function pointer of a member function from a function pointer vector [closed]

i think this is mostly a syntax error ( though not captured during compilation, only at runtime does the error happen) i am trying to develop an event driven architecture , where i keep a vector of ...
-9
votes
2answers
150 views

What Programming Language should i use for ios app Development [closed]

I want to create a event-driven iOS application on a Win8 computer. I have done some research, and I have found a lot of options for Windows. What program would you use to accomplish this goal? ...
0
votes
2answers
415 views

Are polling and event-driven programming different words for the same technique?

I studied interrupts vs cyclical polling and learnt the advantages of interrupts that don't have to wait for a poll. Polling seemed to me just like event-driven programming or at least similar to a ...
5
votes
4answers
442 views

Design Patterns with Actors

The actor based paradigm is pretty cool. Its ability to scale effectively makes it a paradigm to must-evaluate for any concurrent system. I have done some reading about it, and have a decent idea ...
2
votes
2answers
151 views

Java - event processing design

I am trying to develop a system which will be based on processing certain events and generating data. Each event will contain (possibly) several different fields and each listener will process some or ...
0
votes
0answers
43 views

EDA and data duplication

I'm trying to understand how Messaging with Event-Driven Architecture works and how to avoid data duplication so I have a few questions: Suppose that I have two services - CRM and Billing. When ...
4
votes
2answers
188 views

Why are threads so expensive, that event-driven non-blocking IO is better on benchmarks [closed]

I recently started learning about node.js, a javascript library on top of V8 known for its non-blocking IO and incredible speed. To my understanding, node does not wait for IO to respond, but runs an ...
1
vote
1answer
64 views

node.js return to client waiting for event

I'm playing around a bit with the concept of Comet on node.js, but I'm still a bit confused and I'm wondering if anyone here can point me in the right direction. Think on a game app where client code ...
0
votes
0answers
33 views

How to keep performance as high as possible in SEDA when transactions asynchronously distributed on more events

In my project I try to benefit from SEDA (staged event-driven architecture) for cloud base mass event processing to empower application by automatically tune runtime parameters. However, it may ...
0
votes
2answers
163 views

EDA: “Cascading” Events or Explicit commands?

Scenario Lets say I have three major components of a system: UI - Collects input from the user and creates a LoginUserCommand that is sent over a message bus. The user interface then listens to ...
3
votes
1answer
132 views

How to develop node.js run-time strategy?

Node.js approach is event driven and I was wondering how would you tackle the problem of when to fire off an event? Lets say that we have some actions on a web application: create some data, serve ...
0
votes
1answer
324 views

Spring Integration - Maximum Throughput Consumer

What configuration of Spring Integration elements, if any, would support the model of: One message queue, representing incoming work Multiple consumers reading from that queue (one message only ...
0
votes
0answers
104 views

Event-driven program representation

I'm developing a simple add-on for Firefox with Jetpack, the FF add-on SDK. I want to represent the add-on in a standard diagram/representation, as it would be a class diagram or a flowchart. But ...
0
votes
1answer
98 views

How to implement syntax highlighting in a native text editing application?

My background is as a self taught web developer. I am used to the request/response cycle. However, I'm getting more involved in event driven programming (JavaScript, native apps, etc). I had the idea ...
1
vote
0answers
61 views

Best place (and time) to insert ACLs/ACEs in n-tiers architecture

With all the processes we need to separate in a scalable web architecture and specifically in an Event Driven Design (synchronous and asynchonous jobs), i wonder where is the best place (and also the ...
6
votes
1answer
237 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
923 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) ...
0
votes
1answer
294 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 ...
5
votes
3answers
3k 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 ...
1
vote
1answer
364 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 ...
4
votes
4answers
1k 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
942 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, ...
2
votes
2answers
334 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
1answer
632 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 ...
6
votes
2answers
843 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, ...
4
votes
2answers
3k 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 ...
0
votes
1answer
228 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 ?
3
votes
2answers
938 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
957 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
301 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
446 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() { ...
3
votes
2answers
419 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 ...
5
votes
4answers
394 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 ...
0
votes
2answers
66 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 ...
20
votes
7answers
7k 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 ...
1
vote
3answers
235 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 ...
2
votes
2answers
1k 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 ...
0
votes
4answers
4k 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 ...
5
votes
2answers
2k views

Event driven vs sequential programming [closed]

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?
0
votes
1answer
167 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 ...
1
vote
4answers
619 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
41 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 ...
3
votes
2answers
947 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, ...
1
vote
2answers
560 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 ...

1 2