The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
35 views

Callback get function in combination with a event-driven design

I want to make an API(node.js) with a get function. The module I use supports a write, and all incoming data is emitted by an event which I can subscribe too. The underlying system is based on ...
0
votes
1answer
61 views

How do I bind to onclick events for buttons in Mojolicious?

I'm trying to make a small webapp to control the command-line music player I use (mocp), but I'm having trouble hitting routes when the user presses a button on the page. I expect the problem is ...
1
vote
1answer
76 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 ...
0
votes
1answer
123 views

MySQL vs Redis for storing follower/following users

I'm trying to find the best candidate for storing the follower/following user data, I was thinking initially to store it in Redis in a set where user -> set of user ids but then I thought about ...
0
votes
1answer
102 views

What's the magic about event driven? [closed]

After reading several posts about event driven and nodejs, the only advantages I can see are that event driven avoids the memory allocation for threads and replaces polling with notifications where ...
1
vote
1answer
152 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 ...
4
votes
3answers
116 views

Wait for blocking collection (queue) to decrease in size in C#

I'm working on project with the following workflow: Part One: Event arrives asynchronously and is queued in blocking queue, we'll call that Q1 Thread picks up next available item from that queue ...
0
votes
1answer
54 views

What can i parallelize in event driven python web application?

I'm trying to make a simple application on Tornado, and Tornado is an event driven Webserver, and because it's on Python, then i'll try to use Multiprocessing, but in what? Password hashing is a ...
3
votes
1answer
243 views

Event driven (GUI) programming in C for embedded system

I am in the process of making an event driven GUI in an embedded system. I just finished implementing the widget graphics and touchscreen functionality. My question is how to / tips on implementing ...
0
votes
2answers
94 views

How can I write cross-platform event-driven GUI software in Python with a WYSIWYG IDE/RAD? [closed]

I use GNU/Linux. I mostly write software for consoles and shells, however, I now need to design a cross-platform software with a nice GUI. I'm also starting to program in Python, and I'm loving it, ...
0
votes
3answers
125 views

How should menu links be generated in a PHP system?

Part of my Computing course requires me to build an entire PHP system. I have chosen to create one for a fictitious stock broking company which wants its clients to be able to view their assets ...
0
votes
1answer
93 views

How can 'one' IOLoop handle 10k connections?

am sorry for this dumb question, but am really confused; and i hope you'll correct me where am wrong. in the thread based servers (like Apache), i understand that for each client, a new 'worker' will ...
0
votes
1answer
426 views

Creating a simple event driven architecture

Having a bit of trouble with a project at the moment. I am implementing a game and I'd like to have it event-driven. So far I have an EventHandler class which has an overloaded method depending on ...
1
vote
1answer
55 views

Do case statements have to be used for links in PHP? [closed]

I've been given a school project which involves creating an online invoicing system in PHP. My teacher seems to be convinced that the only way to have a menu (with fixed pages like "display", etc) is ...
2
votes
1answer
333 views

how to use AnyEvent::Handler with socket that has port reuse

Recently I ran into a great perl module "AnyEvent", which allows user to do asynchronous/event-driven programing. Created the following snippet which works fine. The problem I have is that after it ...
0
votes
0answers
42 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 ...
3
votes
1answer
296 views

simulate the event driven programming model in Java with basic design pattern

Regarding the event driven programming model. Normally the employer raise the question "simulate the event driven programming model in Java without any external library". I think it is a simple ...
4
votes
2answers
186 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 ...
0
votes
2answers
181 views

Event driven programming in Ext JS

I'm working on an application where different widgets from different plugins would be loaded into a host, and they don't know of each other. So I want to use EDP and in one widget raise an event (for ...
0
votes
0answers
70 views

How to create two way persistence for a game server using Node.js?

Lets say we are building a spaceship game. A few object types would be spaceships, and solar systems. I would like to use Node as the backend. The issue I am having is how to have both these ...
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 ...
11
votes
2answers
913 views

PHP: Am I mixing up event-driven programming with signals-aware interfaces (Singal and Slots / Observer Pattern)?

I've seen a lot of people saying that Symfony2, Zend Framework 2 and others are event-driven. On the desktop world, by event-driven programming I understand that the application will notify its ...
13
votes
5answers
1k views

Non-blocking (async) DNS resolving in Java

Is there a clean way to resolve a DNS query (get IP by hostname) in Java asynchronously, in non-blocking way (i.e. state machine, not 1 query = 1 thread - I'd like to run tens of thousands queries ...
0
votes
0answers
29 views

What is the difference between synchronous programming and event-driven programming? [duplicate]

Possible Duplicate: Event Based == Asynchronous? What is the difference between synchronous programming and event-driven programming? I've used Esterel for reactive systems and want to know ...
1
vote
0answers
92 views

Event Pattern Detection with Reaction/ECA rules on Stream of Events using AND, OR and SEQ

I have a event stream where events are a set of attribute/value-pairs, like: E1 = {(ID, val), (attr, val), (attr, val), ... } I want to detect simple patters using only SNOOP style event algebra, ...
3
votes
2answers
95 views

Winforms subscribing to own events

One common thing I see developers doing in WinForms is forms/controls subscribing to their own events so you get this.Load += new System.EventHandler(this.WelcomeQuickViewWF_Load); this.Activated += ...
1
vote
2answers
233 views

who invokes Android lifecycle handlers?

I am quite confused about the event-driven programming paradigm of Android? Who is in charge of invoking the lifecycle handlers (onCreate(), onResume() etc.)? Is it the Android OS? Or the Dalvik VM ...
4
votes
1answer
565 views

When are threaded frameworks better than event-driven frameworks? (i.e., when is rails better than node.js?)

I understand what a threaded framework is (Rails, Django, Symfony2, …). And I understand what an event-driven framework is (Node.js, EventMachine, Twisted, …) and why it's great for live, chat, speed, ...
0
votes
2answers
368 views

Main loop in event-driven programming and alternatives

To the best of my knowledge, event-driven programs require a main loop such as while (1) { } I am just curious if this while loop can cost a high CPU usage? Is there any other way to implement ...
0
votes
1answer
268 views

epoll/non blocking event driven IO

My question about epoll based non blocking event driven network IO is this - how does the client connection to the epoll service provider remain open? Why doesn't the connection on the client side die ...
2
votes
2answers
884 views

Synchronous HTTP call in Netty

My app receives an HTTP request, and in the middle of the pipeline, a call is made to another server for supporting information. The initial HTTP request can't continue through the pipeline until that ...
2
votes
1answer
1k views

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 servers and how they handle user requests and manage data. If ...
0
votes
0answers
222 views

Concept of code behind (event driven model) given by ASP.Net web based devlopment, is it helping or hampering? [closed]

I have done web based development in variety of technologies like Java (JSP/Servelet/Bean) PHP.. everybody had a similar concept you keep a HTML form get/post data on submit, only with ASP.Net i saw ...
0
votes
1answer
380 views

Tornado Blocking Code

I just thought about the non-blocking infrastructure of tornado and event-driven programming. Actually I'm writing a simple webapp which is accessing a HTTP-API of an external webservice. I understand ...
0
votes
1answer
353 views

Nginx with non thread safe php … can I code with the assumption of no race conditions when persisting?

I might be misunderstanding what it means for nginx to be event-driven opposed to process driven (thus we don't have mod_php in every thread like Apache would). I am assuming that since I have 1 ...
0
votes
2answers
125 views

How do I handle user interaction and sockets events simultaneously?

I am writing this chat program that uses ncurses as the interface. How am I suppose to simultaneously handle the socket file descriptors and user interation? My idea is below. The problem is now the ...
1
vote
1answer
183 views

good materials about event-driven programming

I'm learning event-driven programming by Java now, but most materials are about swing. I wonder if there is any materials about event-driven programming to teach me how to make a event-driven style ...
1
vote
0answers
141 views

Distributed Systems - Event-driven perspective of a P2P file transfer application

I have a P2P file transfer application working in background in wich the file sharing only should be activated when both machines aren't in use. Supposing that in one machine connected to n others the ...
1
vote
1answer
142 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 ...
2
votes
1answer
325 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 ...
17
votes
4answers
6k views

Pattern to manage views in backbone

Coming from GWT, Backbone seems to miss a built-in solution on how to handle the life-cycle of a view. In GWT, every activity, which is more or less the equivalent to a View in Backbone, is managed by ...
0
votes
1answer
403 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
153 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 ...
3
votes
4answers
357 views

Event Based == Asynchronous?

Is "event based" the same as "asynchronous"?
1
vote
0answers
244 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
votes
2answers
360 views

Browser-side node.js or non-blocking javascript?

I am fascinated with non-blocking architectures. While I haven't used Node.js, I have a grasp of it conceptually. Also, I have been developing an event-driven web app so I have a fundamental ...
0
votes
3answers
253 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 ...
4
votes
3answers
91 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?
3
votes
1answer
2k 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() ...
0
votes
1answer
98 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 ...

1 2