Event-driven programming refers to the programming technique where the flow of the program is driven by recognition and handling of events such as mouse clicks, key presses, etc.
0
votes
0answers
44 views
call complex mathy Fotran from Java
I'm working with a company to productize the work that comes out of a couple research labs. The long (appended at the bottom) and short of it is this: we need to call Fortran from Java on windows.
I ...
1
vote
0answers
27 views
Multiple handlers of an exception, and handling exceptions in the UI
Related to: Is onError handler better than exceptions?
Premise
I am writing a piece of library code that performs certain tasks, to separate concerns, we decided it should not write to a log or ...
0
votes
1answer
112 views
Is Akka a good solution for a concurrent pipeline/workflow problem?
Disclaimer: I am brand new to Akka and the concept of Actors/Event-Driven Architectures in general.
I have to implement a fairly complex problem where users can configure a "concurrent pipeline":
...
0
votes
0answers
121 views
Updating GUI in 'realtime' using events
My Plan
Have a system that holds some objects
Have a winforms-form that displays some key values of these objects
When certain changes occur(object gets add / removed / datat change): Update GUI
...
0
votes
0answers
37 views
Is there just one EventHandler class per application?
In a game I'm making I was about to add a MovementEventHandler, with events like "pre-character-movement" and "post-character-movement". But this class will do exactly the same as a future ...
1
vote
1answer
92 views
Should I omit the parameter “e” when using EventHandler<EventArgs>?
Whenever I am defining my own events, I use a pattern such as the following (which I believe is how the MSDN recommends doing it):
public class MyEventClass
{
private bool _value; // Backing ...
2
votes
3answers
154 views
jQuery - When to Bind Event Listeners?
I'm building a medium-sized "single-page" JavaScript application using jQuery. If you include all possible functionality of the application, there are 134 click bindings.
Since most of the content is ...
17
votes
4answers
573 views
What should plugins use: hooks, events or something else?
Consider an app that allows plugins to react to its program flow.
I know 2 ways to achieve this: hooks and events
1. Hooks
Use calls to empty functions inside the main program flow. These functions ...
1
vote
1answer
165 views
Good pattern(s) for pointing to mutable state
I asked this question once here, but believe the question was unclear. However I'm having a hard time extracting the general problem from my specific case.
UPDATE: I've answered my own question ...
1
vote
0answers
100 views
State Pattern Code for embedded device - Dependency Injection of Device Objects in Context and State Classes
I'm wrestling with some code and I think I've finally gotten some state pattern code working with my events.
I've got a simplified system that will work like this:
This is my first go with State ...
0
votes
3answers
70 views
One Event Sent to Multiple Listeners, Want to Log Notification Once
I have a system in place where a Cache is made up of many Cache Nodes. When one is added, a CacheNodeAdded event is raised by the Cache. The Cache has a redundant set of Monitors listening for ...
3
votes
1answer
183 views
Should Libraries Use Events or a Set Action
I'm building a small reusable library for two systems our company manages.
Something that I've been caught up on is whether I should expose a set of properties of type Action<T> for events such ...
4
votes
2answers
219 views
How is the publish-subscribe pattern different from gotos?
My understanding is that Goto statements are generally frowned up. But the publish-subscribe pattern seems to be conceptually similar in that when a piece of code publishes a message, it performs a ...
0
votes
1answer
293 views
How does jQuery's mechanism of event handlers work
I'm in the need of widen my perspective on the framework libraries, to be able to make well aware choices of if/which/when to add a framework to a website.
One thing that got my attention was event ...
0
votes
3answers
169 views
When/Where to create/assign event handlers to its elements
Lets say I have the following code
// JS
$(function(){
$('[data-mc=logout]').click(function(){
if (!confirm(myconfig.msg['asklogout'])) {
return false;
...
1
vote
1answer
193 views
Global vs Individual object event handlers
Lately I've been studying a lot of javascript samples, both with/without libraries, jQuery to mention one.
As an old JavaScript developer, I learned early to make use of unobtrusive javascript where ...
0
votes
1answer
344 views
Event Driven Programming?
I have been looking into event driven programming in C and the language doesn't seem to have support for it. This has led me to wonder about the nature of event driven programming. Is it correct to ...
0
votes
1answer
202 views
sqlite trigger or application event?
I've have two event queues(table mapped queues) based on two different states of same data stored in two different tables. The events are generated on create/update/delete on both the tables.
...
2
votes
3answers
506 views
Difference between event loop and system calls/interrupts
When you create programs (like a socket server) that are designed to run on an operating system, such as Ubuntu, frameworks like Qt for C++ use something called a main event loop:
app = new ...
2
votes
2answers
117 views
Distribution of Event Listeners in a Distributed Service Oriented Architecture
I have a service architecture composed of services that service common areas of the application. Examples of services would be:
AccountService (manages client accounts in the system)
BillingService ...
9
votes
1answer
3k views
Communication between nested directives
There seem to be quite a few ways of communicating between directives. Say you have nested directives, where the inner directives must communicate something to the outer (e.g. it's been chosen by the ...
0
votes
0answers
24 views
Listening For and Raising Events in the BLL
I'm working on a WinForms .Net Recording App and I have a RecordingMgr in my BLL to listen for new events captured by another class. I want to display the events in my UI and I'm stuck as to what's ...
3
votes
2answers
97 views
Attaching Events to Document Better Than Attaching Them to Elements?
While bouncing around StackOverflow, I've noticed a number of people attaching events (notably click events) to the document as opposed to the elements themselves.
Example:
Given this:
<button ...
19
votes
6answers
2k views
Is an event loop just a for/while loop with optimized polling?
I'm trying to understand what an event loop is. Often the explanation is that in the event loop, you do something until you're notified that an event occurred. You than handle the event and continue ...
0
votes
3answers
152 views
Is it okay to call functions when event occurs, or after that?
So I was not sure how to structure this title, feel free to edit it.
My question is:
When I have a Game Loop, I have 3 main blocks. Handle Events, Update game state, and draw.
Let's say for example I ...
1
vote
1answer
157 views
How to cross-reference many character encodings with ASCII OR UTFx?
I'm working with a binary structure, the goal of which is to index the significance of specific bits for any character encoding so that we may trigger events while doing specific checks against the ...
0
votes
1answer
179 views
How QT Framework handles Events Coming from OS?
When we call QApplication::exec() at the end of our main() function, the application enters Qt's event loop. Conceptually, the event loop looks like this:
while (!exit_was_called) {
while ...
-5
votes
5answers
755 views
Can PHP handle mouse events? [closed]
I'm a newbie in php and i want to know if php can handle mouse events such as upon mouseCicked, mouseDoubleClicked, mouseMoved, mouseHovered etc..
And can events like button click , like displaying ...
2
votes
2answers
255 views
Am I doing events right?
My problem is with JavaScript in the browser but I guess it could apply to any event-driven environment.
I have coded up a widget in my app. The widget allows a user to select an item using 3 ...
3
votes
1answer
101 views
Assessing Relative Maintainability
We (a contractor, actually) are implementing an off the shelf system to replace a legacy homegrown system for the core domain of the company (designing widgets). Unfortunately both systems will have ...
1
vote
1answer
196 views
Push-Based Events in a Services Oriented Architecture
I have come to a point, in building a services oriented architecture (on top of Thrift), that I need to expose events and allow listeners.
My initial thought was, "create an EventService" to handle ...
8
votes
2answers
362 views
How to detect achievements in gaming?
I mistakenly posted this to stackoverflow and now posting here based on a suggestion in on that site ...
This is a very high level conceptual question. Say in a software application I have 4 ...
-2
votes
3answers
252 views
Do all programs run in a loop? [closed]
I was wondering whether all programs run in a Loop, checking for variable changes then acting upon said changes followed by another Loop. Or do they run in a While statement, waiting for a variable to ...
1
vote
2answers
170 views
Where is interface between button click and event raising defined
When I click on button, might be in windows apps, web apps, etc it has some animation to actually see it clicked and event is raised in background. I've knowledge of events and its attaching to button ...
1
vote
2answers
229 views
In an event-driven environment, how should a “cancel” function abort all further events?
In my iOS app, things are mostly driven by events.
The user presses a button
The app listens for an external device to be connected to the iOS device
Once the device is detected (is connected), an ...
-1
votes
1answer
98 views
Automation Approaches: Events/Triggers/Cron [closed]
It has been my experience, when building websites, that most of the logic of a system is executed when user input is accepted, be it via POSTs, GETs etc. I would like to know what processes or ...
2
votes
3answers
318 views
How to document events?
Code documentation is usually related to a piece of code, be it small (method-level) or larger (class- or namespace-level). However, it is always about the inputs and the outputs of that piece of ...
5
votes
2answers
1k views
Event Driven Programming: A sequence of unfortunate events
I have a very basic game loop whose primary purpose is to check for updates & changes to a list.
I have contemplated using event driven programming to replace the game loop/list idea with an ...
2
votes
1answer
198 views
Application protocols and state machines: designing a complicated server
I'm designing and prototyping a server that has the following characteristics:
during the daemon's initialization it spawns nine "manager" servers, each of which solves one part of the overall ...
2
votes
2answers
274 views
What are the caveats of the event system built on Messenger rather than on classic .NET events?
MVVM Light and PRISM offer messenger to implement event system.
the approximate interface looks like the following one:
interface Messanger
{
void ...
3
votes
1answer
72 views
Event system architecture for networking when performance is concerned
How should I design a system for an action game (think in Golden Axe) where events can happen remotely?
I'm using TCP for this because the client is in flash.
There's so many options, I can make a ...
8
votes
1answer
419 views
Futures/Monads vs Events
In an application framework
when performance impact can be ignored (10-20 events per second at max),
what is more maintainable and flexible to use as a preferred medium for communication between ...
3
votes
2answers
561 views
Thread safe GUI programming
I have been programming Java with swing for a couple of years now, and always accepted that GUI interactions had to happen on the Event Dispatch Thread. I recently started to use GTK+ for C ...
3
votes
3answers
1k views
Combining multiple events into one action/ Defer refreshing
So in a GUI program I have multiple events that trigger a update of a workspace. This update call is costly so I would want it to not happen very often.
A user might pick something from a dropdown ( ...
1
vote
5answers
238 views
Should I use events in this case?
I'm creating a video player, like a custom YouTube player.
All of the GUI elements (progress bar, video player, play button, ...) are different classes, but I obviously need them to communicate. When ...
0
votes
1answer
350 views
event source calls methods in a interface
I am using Java.
How does an event source like a (button in a GUI) knows which method to call in an interface?
For example, I am listening to Mouse Events and have implemented a Mouse Listener ...
9
votes
5answers
482 views
Is event chaining considered good practice?
From time to time I've encountered scenarios where several complex conditions need to be met prior to triggering an event. Furthermore, most listeners also run additional checks to determine the ...
8
votes
6answers
1k views
How to ease the maintenance of event driven code?
When using an event based component I often feel some pain at maintenance phase.
Since the executed code is all split around it can be quite hard to figure what will be all the code part that will ...
4
votes
1answer
613 views
Need to process 2 million 100k messages per second and route them to a particular event, delegate or multicast delegate
I need to process 2 million messages per second (perhaps in a scale out configuration) and route each message to a N delegates or multicast delegates.
Question
How should I structure my application ...
1
vote
3answers
568 views
Event driven design and separation of core/UI logic
I am new to event driven development, and I feel lost when I try to implement events that should pass the core/UI boundary.
In my program I have the following (example in c#):
UI.RuleForm ...