本文整理汇总了Python中celery.worker.hub.Hub.init方法的典型用法代码示例。如果您正苦于以下问题:Python Hub.init方法的具体用法?Python Hub.init怎么用?Python Hub.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类celery.worker.hub.Hub
的用法示例。
在下文中一共展示了Hub.init方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_enter__exit
# 需要导入模块: from celery.worker.hub import Hub [as 别名]
# 或者: from celery.worker.hub.Hub import init [as 别名]
def test_enter__exit(self):
hub = Hub()
P = hub.poller = Mock()
hub.init = Mock()
on_close = Mock()
hub.on_close.append(on_close)
hub.init()
try:
hub.init.assert_called_with()
read_A = Mock()
read_B = Mock()
hub.update_readers({10: read_A, File(11): read_B})
write_A = Mock()
write_B = Mock()
hub.update_writers({20: write_A, File(21): write_B})
self.assertTrue(hub.readers)
self.assertTrue(hub.writers)
finally:
hub.close()
self.assertFalse(hub.readers)
self.assertFalse(hub.writers)
P.unregister.assert_has_calls([call(10), call(11), call(20), call(21)], any_order=True)
on_close.assert_called_with(hub)
示例2: test_init
# 需要导入模块: from celery.worker.hub import Hub [as 别名]
# 或者: from celery.worker.hub.Hub import init [as 别名]
def test_init(self):
hub = Hub()
cb1 = Mock()
cb2 = Mock()
hub.on_init.extend([cb1, cb2])
hub.init()
cb1.assert_called_with(hub)
cb2.assert_called_with(hub)