"A persistent TCP connection between the client and the server and both parties can start sending data at any time. "
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections.



class SampleBroker(Broker):def __init__(self):passdef authorize(self, client_connection):return True