I have two applications, written on twisted framework, for example one using twisted.web, and other using twisted.protocols.*, not web. How can I "merge" them in one, effectively sharing one reactor for both apps?
What are the best practices for that tasks? Actually I need to connect SIPSimpleApp and TornadoWeb. They both can use twisted reactor.
In a twisted application you can install more than one protocol-factory-client instance
Twisted will handle connection for all application.
So you can instanciate as server/client as you want and , you're right , reactor.run() must be launch only one time.
So you can import your protocole and thant run the reactor loop . exemple based on the simpliest echo example:
that's work
You can also use twistd system, and the service collection, documentation here