The reactor design pattern is an event handling pattern for handling service requests delivered concurrently to a service handler by one or more inputs. The service handler demultiplexes the incoming requests and dispatches them synchronously to the associated request handlers.

learn more… | top users | synonyms

0
votes
1answer
32 views

How do the async file IO methods work for local files in Node.js?

Node has a async/sync versions of all its filesystem IO operations, but I was wondering: how is async file IO implemented in Node.js for operations on local files? I myself was messing around with ...
0
votes
0answers
26 views

how to run two separate threads with twisted reactor in Linux by having virtualenv?

how to run two separate threads with twisted reactor in Linux by having virtualenv ? the virtualenv has Python 2.7.4 the application is calling " reactor.callInThread(self._checkForNewMessage) " ...
1
vote
2answers
27 views

Should I use the async File IO methods over their synchronous equivalents for local files in node.js?

I have a very simple utility script that I've written in JavaScript for node.js which reads a file, does a few calculations, then writes an output file. The source in its current form looks something ...
3
votes
3answers
693 views

Akka or Reactor

I am in the process of starting a new project (java-based). I need to build it as a modular, distributed and resilient architecture. Therefore I would like to have the business processes to ...
0
votes
1answer
23 views

storage model for File_descriptor and Handle in Reactor pattern

I'm implementing the asynchronous pattern Reactor in C++, based on Epoll. First, we will register file descriptor with the Reactor by calling the function template<typename Handle> void ...
0
votes
1answer
45 views

EventMachine.add_timer(0)

I came across a code that adds a timer with timeout 0: EventMachine.add_timer(0) { ... } does this make sense? how this can be useful? is this any different than using next_tick? ...
2
votes
0answers
63 views

How to ACK celery tasks with parallel code in reactor?

I have a celery task that, when called, simply ignites the execution of some parallel code inside a twisted reactor. Here's some sample (not runnable) code to illustrate: def run_task_in_reactor(): ...
1
vote
2answers
56 views

Ruby Grape Reactor gets blocked

I am creating an API using Ruby Grape and I face the following problem. When there is a new GET request, a large amount of data is requested which takes long time and in the meanwhile Reactor is ...
1
vote
1answer
98 views

Crawler using twisted, what can I do when getPage get a timeout error?

I write a crawler using twisted and its deferredGenerator. The following is the code about my questions : @defer.deferredGenerator def getReviewsFromPage(self,title,params): ...
0
votes
1answer
43 views

Maven reactor and site

I have a multi-module project with a parent pom.xml and serveral modules where some of the modules depend on each other. In the project directory i can call mvn test to run unittests in each ...
1
vote
1answer
111 views

libev webserver reading files

When creating a small webserver with libev in C, what is the best strategy to serve files (open, ready, write to socket) without blocking the reactor? I have across some recommendations to read a few ...
0
votes
0answers
13 views

How handle can be returned to the server after creating handle? Reactor Design Pattern

I am making a presentation about Reactor Design Pattern and I am reading a work made by Douglas C. Schmidt and he writes: "Clients that want to log data must first send a connection request to the ...
1
vote
1answer
170 views

Twisted IRC Bot connection lost repeatedly to localhost

I am trying to implement an IRC Bot on a local server. The bot that I am using is identical to the one found at Eric Florenzano's Blog. This is the simplified code (which should run) import sys ...
0
votes
3answers
144 views

What are worker threads, and what is their role in the reactor pattern?

I'm trying to undertand the Reactor pattern (concurrent), but in many examples they are talking about 'worker threads'. What are worker threads? In what do they differ from 'normal' threads? And what ...
0
votes
0answers
84 views

commit reactor submodules with scm:checkin goal from maven scm plugin

I have defined a reactor project with 2 sub-modules. now I want to execute a few maven goals on this modules in one step, but the problem is the goal scm:checkin won't be executed on the 2 subModules, ...
0
votes
0answers
56 views

How can I load all the objects inside a table and keep EventMachine responsive?

Here's what I'm trying to achieve: populate a database with a large number of objects ( I added 200k fictive books ) query & load all of the objects in memory keep EventMachine reactor ...
0
votes
1answer
113 views

Add jar file to Maven Reactor modules list

I am New to using Maven Reactor. So here is my issue, I have 3 Modules (ModuleA,ModuleB,ModuleC). I extracted ModuleC as an independent jar (which contains db scripts). In pom.xml I am trying to ...
0
votes
1answer
359 views

Twisted Python: reactor and protocol

I have several questions about the Twisted reactor. 1/ What kind of errors would crash/stop/terminate the reactor? what kind of errors would not? 2/ I have two reactors, each running a different ...
0
votes
1answer
75 views

Option to tell .NET reflection programs (reflctors, profilers and antivirus programs) that an exe is obfuscated or show message if being reflected

I use the product .NetReactor to obfuscate one of our product. The tool is very agreesive so if anyone try to reflect into the exe with evil purposes in mind it not only give back garbage but so much ...
0
votes
0answers
113 views

EventMachine stops ticking after receiving data on stdin.

it seems that EventMachine stops ticking after reading from the attached STDIN fd. I'm not sure why this is happening, can somebody suggest a fix for it? Google isn't very helpful regarding the ...
1
vote
1answer
147 views

eventmachine multiple sockets

When starting multiple listening sockets "servers" inside the reactor loop - is it safe to assume that a block happening in one of the listening socket callbacks to cause the other sockets to stop ...
1
vote
2answers
170 views

Multiple NIO reactors, or just one?

I've currently been reading up on Java NIO and have made some implementations of it myself in the past. However, I've never really though about the performance of a server -- which seems really ...
0
votes
1answer
359 views

EventMachine on Heroku with Rails & EM-C2DM Gem

Trying to use the GroupMe gem EM-C2DM, https://github.com/groupme/em-c2dm, a Google C2DM Ruby Library using Event Machine, within Rails. I know it should work on Heroku as there is a configuration ...
4
votes
1answer
218 views

twisted transport.write in a non-reactor thread

I am designing a gui application as a client for a server where i have 3 classes a class for twisted protocol , another for the factory and the third for the pyqt thread it self. how can i send data ...
1
vote
1answer
711 views

To use Active object or not?

The active object design pattern as I understand is tying up a (private/dedicated) thread life time with an object and making it work on independent data. From some of the documentation I read , the ...
1
vote
3answers
880 views

Looking for Reactor Pattern example source code in C++

Just read Douglas R. Schmidt’s paper on the reactor pattern and I'd like to see a good example actually implemented to clear some questions up. I spent some time searching for a fully implemented ...
5
votes
1answer
575 views

Java Reactor Pattern with java.io Package

I see in several application source like Minecraft and JIrcs they both use java.io to implement Reactor Plugin (if I'm not wrong) and also in this article. So, what is the difference between java.io ...
0
votes
1answer
347 views

design pattern for AI 'intelligent agents'

is there a recommended design pattern for designing an AI scenario consisting of multiple intelligent agents that do not necessarily have to interact with each other. Thinking it is basically a ...
0
votes
1answer
207 views

Txredisapi exceptions.RuntimeError: maximum recursion depth exceeded

I am trying to delete all keys except some in Redis, and I do get the following exception: ... File ...
2
votes
1answer
340 views

Reactor stops between tests when using twisted.trial.unittest

Is there a way to keep connection online between tests? Im trying to keep users logged when running a multiple tests set, but noticed unexpected behaviour: reactor stops after each test (so once ...
0
votes
1answer
372 views

How to write an asynchronous twisted application for client server communication using txredis

I want to use redis for my game's leaderboard data and I have seen in one of the Stackoverflow questions that txredis is a good option for this. However I cannot find any example which may lead me to ...
1
vote
1answer
165 views

how to end a rector event loop in ace

I found two ways of ending a reactor event loop in ace: 1. ACE_Reactor::instance()->end_reactor_event_loop(); 2. ACE_Reactor::instance()->close() What is the difference between them? Which ...
3
votes
1answer
259 views

Set up basic Twisted Reactor

I am very new to using Twisted. I have set up a protocol in a .py and it works perfectly. The thing is that currently to test it I have to ssh into my server and run it. I would like to have it ...
2
votes
1answer
790 views

What is a good way to handle multithreading with Poco SocketReactor?

So I'm starting to do some research on alternatives for implementing a high volume client/server system, and I'm currently looking at Poco's Reactor framework since I'm using Poco for so much of my ...
0
votes
1answer
246 views

ACE acceptor - My_Svc_Handler class

I am using the ace acceptor to listen to a TCP port. my class inherets from My_Svc_Handler and impliments the funcion int open (void *) of the class My_Svc_Handler. In all the examples I saw, inside ...
6
votes
1answer
347 views

How can a disconnected TCP socket be reliably detected using MsgWaitForMultipleObjects?

Twisted includes a reactor implemented on top of MsgWaitForMultipleObjects. Apparently the reactor has problems reliably noticing when a TCP connection ends, at least in the case where a peer sends ...
1
vote
1answer
1k views

.NET Assembly protection with .NET Reactor

I'm testing out Eziriz .NET Reactor to protect a software, developed using Visual Studio 2010 C# WPF. I am confused when the .NET Reactor ask to which assembly to protect. I though it supposed to ...
0
votes
3answers
90 views

Multiple Execution Paths with limited Threads

I have a challenging asynchronous programming task, wonder if anyone did anything like that with Java. Let's assume I'm developing a framework which will be used like this: Do some custom Java stuff ...
0
votes
2answers
98 views

Form building tool for ColdFusion Reactor?

I'm using Reactor with ColdFusion and I'm wondering if there are any tools that'll build a simple html form automatically from a record object?
1
vote
1answer
61 views

How to get a record's column names using CF Reactor?

I'd like to get a list/array of a record object's column names. I suppose I could get this by looping thru the method names, but I was hoping that there would be something cleaner?
1
vote
1answer
86 views

How to obtain table iterator with ColdFusion's Reactor?

I'm using Reactor with ColdFusion for ORM, and I know how to get a Gateway object for a table X which provides a getAll method which returns a query with all records in a table X, but instead I want a ...
4
votes
3answers
1k views

Twisted unhandled error

When the twisted reactor is running and an exception occurs within a deferred that isn't caught, "Unhandled Error" is printed to the terminal along with a traceback and the exception. Is it possible ...
5
votes
2answers
2k views

Stop twisted reactor on a condition

Is there a way to stop the twisted reactor when a certain condition is reached. For example, if a variable is set to certain value, then the reactor should stop?
2
votes
2answers
223 views

Using twisted.internet.reactor inside a Protocol subclass

I am new to twisted and I am trying to understand the design patterns for asynchronous programming in general and twisted in particular. From a design standpoint, is it a good idea to access the ...
4
votes
2answers
270 views

How to get around the need for multiple reactors in twisted

I am running a Qt application on Linux using the qt4reactor The application sends and receives bytes on the serial port. This works very well on Linux with the QtReactor However when I port the ...
3
votes
4answers
1k views

Twisted: use of multiple threads and processes together

The Twisted documentation led me to believe that it was OK to combine techniques such as reactor.spawnProcess() and threads.deferToThread() in the same application, that the reactor would handle this ...
2
votes
2answers
837 views

Twisted reactor starting multiple times in a single program?

Is it possible to start the reactor more than once in the same program? Suppose you wanted to encapsulate twisted functionality inside a method, for API purposes. For example, mymodule.py looks like ...
1
vote
1answer
146 views

How to pop a tkMessageBox in a twisted powered server

I have a server based on twisted reactor, and I need the following scenario: the server can receive two types of request ADD(x,y) and returns a sum HUMAN_PERMISSION which returns true only if the ...
1
vote
0answers
444 views

3ds max: change cloth into rigid body over time [closed]

I am trying to create a car crash, and for that I have the body of the car as a rigid object, and the front as cloth. Upon impact, I create the animation which deforms the cloth making it look like a ...
2
votes
1answer
216 views

twisted reactor: priority and insights

Two simple questions about twisted reactor: Is there a way to explicitly assign a priority while scheduling a task ? Is it possible to inspect the reactor in order to list all the pending tasks?

1 2