Twisted, a tornado, and a pulsar use an event loop (called a twisted state reactor) to wait for events in file descriptors. In this regard, they are similar libraries and therefore can interact with each other.
The pulsar actor model refers to the parallel side of an asynchronous structure. Here the pulsar is different from twisting, for example. In a pulsar, each actor (thinking of a specialized thread or process) has its own cycle of events. Thus, any actor can run his own asynchronous server, for example.
Read more about the implementation of an actor in a pulsar here
http://quantmind.imtqy.com/pulsar/design.html
Luca sbardella
source share