Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
4k views

What is the maven reactor?

I've been reading about maven reactor and am confused by its terminology usage. I've read the a multi-module is a reactor, that you can manipulate the maven reactor and that the reactor is a plugin. ...
6
votes
2answers
634 views

Multiple reactors (main loops) in one application through threading (or alternative means)

I've got an idea for an app I'd like to work on to learn a bit more about Twisted and WebSockets. I was thinking of integrating a previously written IRC Bot into a web application. As far as I can ...
5
votes
1answer
120 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 ...
4
votes
2answers
95 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 ...
4
votes
2answers
306 views

Is twisted.internet.reactor global?

For example, if one application does from twisted.internet import reactor, and another application does the same, are those reactors the same? I am asking because Deluge, an application that uses ...
4
votes
5answers
5k views

Maven - skip parent project build

I know it's mauvais ton to ask twice in a single day but here's another Maven puzzler: I have a parent POM which defines 5 modules (5 subprojects). Since each module is executed in exactly the same ...
3
votes
1answer
70 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 ...
3
votes
4answers
223 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 ...
3
votes
2answers
203 views

Is there a correct way to 'yield' in the cooperative threading sense in javascript?

I'm writing a ubiquity plugin the long function callback for an ajax query is blocking up the GUI Thread causing firefox to lock up. The obvious solution seem to be to use some sort of deferred ...
2
votes
0answers
50 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 ...
2
votes
3answers
213 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 ...
2
votes
2answers
187 views

Stop twisted reactor on a condition

This might be something very simple and I might have overlooked something very basic, but is there a way to stop the twisted reactor when a certain condition is reached. For example, if a variable is ...
2
votes
1answer
103 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
vote
1answer
27 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 ...
1
vote
1answer
8 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 ...
1
vote
1answer
256 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 ...
1
vote
1answer
31 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
40 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 ...
1
vote
2answers
79 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 ...
1
vote
2answers
191 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
73 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
204 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 ...
1
vote
1answer
314 views

Having PyQt app controlling all. How use reactor?

I've a django application, served via Twisted, which also serves ohter services (three sockets, mainly). I need to have it working under windows, and I decide to write a PyQt4 application which acts ...
1
vote
1answer
1k views

Annoying Twisted Python problem

I'm trying to answer the following question out of personal interest: What is the fastest way to send 100,000 HTTP requests in Python? And this is what I have came up so far, but I'm experiencing ...
1
vote
1answer
454 views

With Twisted, how can 'connectionMade' fire a specific Deferred?

This is part of a larger program; I'll explain only the relevant parts. Basically, my code wants to create a new connection to a remote host. This should return a Deferred, which fires once the ...
0
votes
1answer
38 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 ...
0
votes
0answers
47 views

Twisted Profile

I felt the need to profiling server written in python, framework, twisted. To do this, I run the script with keys -m cProfile -o my.pyprof. At first everything was fine. File was created my.pyprof I ...
0
votes
1answer
38 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 ...
0
votes
3answers
48 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
46 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?
0
votes
0answers
89 views

3DSMAX Reactor clothe act like soft fabric instead of thick curtain [closed]

With a simple collision, the clothe get a very important dynamic, I just search how to get a thick curtain faily stable...
0
votes
1answer
169 views

Restarting a Twisted-python Reactor after an unsuccessful connection

I am writing a server with multiple clients. When a client starts, the server may not yet be working. So a "reactor.connectTCP" may fail (no receiving end). Currently I'm solving this by looping on a ...
0
votes
1answer
282 views

ACE Reactor quits on interrupted system call

I have an ACE reactor that accepts socket connections and listens for the incoming data on those connections. The reactor runs in a dedicated thread. This is the thread's entry function: int ...
0
votes
3answers
162 views

http server implentation, the page does not show properly

well, as i am doing a small project of coding an http server. the code is at http://code.google.com/p/reactor/ the current puzzle is when asked to parse a page with java script and css. As an http ...
0
votes
3answers
1k views

How to skip tests when using maven reactor?

I am working on a Maven multi-modules project. I want to build a given module and skip the unit tests to speed the process up. I've tried the following: mvn reactor:make -Dmake.folders=search ...
0
votes
2answers
489 views

twisted - interrupt callback via KeyboardInterrupt

I'm currently repeating a task in a for loop inside a callback using Twisted, but would like the reactor to break the loop in the callback (one) if the user issues a KeyboardInterrupt via Ctrl-C. From ...
0
votes
1answer
224 views

Accessing all objects created from ClientFactory in Twisted?

I'm working on a basic Twisted application to help me learn how reactors work with multiple services. The basic outline of what I'd like my script to do is as follows: My script will be both a ...
0
votes
4answers
606 views

Is is possible to use IOCP (or other API) in Reactor-style operations?

Is there any scalable Win32 API (like IOCP not like select) that gives you reactor style operations on sockets? AFAIK IOCP allows you to receive notification on completed operations like data read or ...