当前位置: 首页 > 文档资料 > Tornado 用户手册 >

tornado.platform.twisted — Bridges between Twisted and Tornado

优质
小牛编辑
137浏览
2023-12-01

Bridges between the Twisted reactor and Tornado IOLoop.

This module lets you run applications and libraries written for Twisted in a Tornado application. It can be used in two modes, depending on which library’s underlying event loop you want to use.

This module has been tested with Twisted versions 11.0.0 and newer.

Twisted on Tornado

class tornado.platform.twisted.TornadoReactor(io_loop=None)

Twisted reactor built on the Tornado IOLoop.

implements the Twisted reactor interface on top of the Tornado IOLoop. To use it, simply call at the beginning of the application:

import tornado.platform.twisted
tornado.platform.twisted.install()
from twisted.internet import reactor

When the app is ready to start, call IOLoop.current().start() instead of reactor.run().

It is also possible to create a non-global reactor by calling tornado.platform.twisted.TornadoReactor(io_loop). However, if the and reactor are to be short-lived (such as those used in unit tests), additional cleanup may be required. Specifically, it is recommended to call:

reactor.fireSystemEvent('shutdown')
reactor.disconnectAll()

before closing the .

在 4.1 版更改: The io_loop argument is deprecated.

tornado.platform.twisted.install(io_loop=None)

Install this package as the default Twisted reactor.

install() must be called very early in the startup process, before most other twisted-related imports. Conversely, because it initializes the , it cannot be called before or multi-process . These conflicting requirements make it difficult to use in multi-process mode, and an external process manager such as supervisord is recommended instead.

在 4.1 版更改: The io_loop argument is deprecated.

Tornado on Twisted

class tornado.platform.twisted.TwistedIOLoop

IOLoop implementation that runs on Twisted.

implements the Tornado IOLoop interface on top of the Twisted reactor. Recommended usage:

from tornado.platform.twisted import TwistedIOLoop
from twisted.internet import reactor
TwistedIOLoop().install()
# Set up your tornado application as usual using `IOLoop.instance`
reactor.run()

Uses the global Twisted reactor by default. To create multiple TwistedIOLoops in the same process, you must pass a unique reactor when constructing each one.

Not compatible with because the SIGCHLD handlers used by Tornado and Twisted conflict with each other.

See also for general notes on installing alternative IOLoops.

Twisted DNS resolver

class tornado.platform.twisted.TwistedResolver

Twisted-based asynchronous resolver.

This is a non-blocking and non-threaded resolver. It is recommended only when threads cannot be used, since it has limitations compared to the standard getaddrinfo-based and . Specifically, it returns at most one result, and arguments other than host and family are ignored. It may fail to resolve when family is not socket.AF_UNSPEC.

Requires Twisted 12.1 or newer.

在 4.1 版更改: The io_loop argument is deprecated.