Tagged Questions

Event-based-programming is a coding style which components born with high cohesion and communicate to each other by sending messages through Events and Delegates. Their behavior doesn't take other logics into account, they just provide services to them through the use of Events and Delegates.

learn more… | top users | synonyms

5
votes
4answers
1k views

Is there a Java equivalent to libevent?

I've written a high-throughput server that handles each request in its own thread. For requests coming in it is occasionally necessary to do RPCs to one or more back-ends. These back-end RPCs are ...
3
votes
2answers
616 views

How would I go about implementing the event-based asynchronous pattern?

Hi I want to implement the event-based asynchronous pattern using c#. The Microsoft documentation below is really helpful but quite rightly it leaves out the implementation details. ...
2
votes
2answers
175 views

What's the difference between: Asynchronous, Non-Blocking, Event-Base architectures?

What's the difference between: Asynchronous, Non-Blocking, and Event-base architectures? Can something be both asynchronous and non-blocking (and event-based)? What's most important in ...
2
votes
2answers
251 views

Using the Task Parallel Library on an event-based asynchronous pattern

I'm writing a networked application. Messages are sent over the transport as such: Network.SendMessage (new FirstMessage() ); I can register an event handler to be called when this message type ...
2
votes
2answers
145 views

How to make plugin-like web application with PHP?

StackOverflow! I'm looking for a way to make plugin-like (I didn't know how to call it) web application with PHP. With that I meant that I want to make system where user can add/remove plugins ...
2
votes
1answer
151 views

Need recommendations to create an event-based messaging and badging system in Rails

I want to create an event-based notification and badging system that would award users when they accomplish certain goals. Goals might include: Posting 20 entries on a forum -> alert on homepage ...
1
vote
1answer
233 views

Dataflow computing in python

I have n (typically n < 10 but it should scale) processes running on different machines and communicating through amqp using RabbitMQ. Processes are typically long running and may be implemented ...
1
vote
1answer
478 views

How to consume web service adheres to the Event-based Asynchronous Pattern?

I am following the example from http://msdn.microsoft.com/en-us/library/8wy069k1.aspx to consume a web service implemented (by 3rd party) using the Event-based Asynchronous Pattern. However, my ...
1
vote
2answers
297 views

Grail or Ruby on rails for an highly interactive event based web application?

With Java and Perl background, I have narrowed down the web framework choices to Grail or RoR. The web application is a highly interactive content management app ran on private cloud. One vision ...
0
votes
0answers
55 views

sending progress information from async procedure in c++

I am trying to implement the Event Based Asynchronous pattern in c++. As I see the concept with ProgressChangedEventArgs is that it encapsulates all the progress info that need to be sent from the ...
0
votes
0answers
129 views

Asp.net async pages: Making Asynchronus call in the callback

I have a question regarding the asynchronous pages in ASP.net 2.0. As per my understanding there are 3 ways to make an asynchronous page. 1) Using AddOnPreRenderCompleteAsync 2) Using Event based ...
0
votes
5answers
113 views

Proper place to call an event?

I have a Windows Form project that I've just started. On the form I have a listbox that I'm loading with Products. When someone double clicks a Product, I want it to raise a ProductChanged event. ...