本文整理汇总了Python中eventlet.hubs.use_hub方法的典型用法代码示例。如果您正苦于以下问题:Python hubs.use_hub方法的具体用法?Python hubs.use_hub怎么用?Python hubs.use_hub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eventlet.hubs
的用法示例。
在下文中一共展示了hubs.use_hub方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: patch
# 需要导入模块: from eventlet import hubs [as 别名]
# 或者: from eventlet.hubs import use_hub [as 别名]
def patch(self):
hubs.use_hub()
eventlet.monkey_patch(os=False)
patch_sendfile()
示例2: restart_hub
# 需要导入模块: from eventlet import hubs [as 别名]
# 或者: from eventlet.hubs import use_hub [as 别名]
def restart_hub():
from eventlet import hubs
hub = hubs.get_hub()
hub_shortname = hub.__module__.split('.')[-1]
# don't restart the pyevent hub; it's not necessary
if hub_shortname != 'pyevent':
hub.abort()
hubs.use_hub(hub_shortname)
示例3: test_explicit_hub
# 需要导入模块: from eventlet import hubs [as 别名]
# 或者: from eventlet.hubs import use_hub [as 别名]
def test_explicit_hub(self):
oldhub = hubs.get_hub()
try:
hubs.use_hub(Foo)
assert isinstance(hubs.get_hub(), Foo), hubs.get_hub()
finally:
hubs._threadlocal.hub = oldhub