当前位置: 首页>>代码示例>>Python>>正文


Python ioloop.add_timeout方法代码示例

本文整理汇总了Python中tornado.ioloop.add_timeout方法的典型用法代码示例。如果您正苦于以下问题:Python ioloop.add_timeout方法的具体用法?Python ioloop.add_timeout怎么用?Python ioloop.add_timeout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tornado.ioloop的用法示例。


在下文中一共展示了ioloop.add_timeout方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_get_client2

# 需要导入模块: from tornado import ioloop [as 别名]
# 或者: from tornado.ioloop import add_timeout [as 别名]
def test_get_client2(self):
        c = ClientPool(max_size=2)
        client1 = yield c.get_connected_client()
        self.assertTrue(isinstance(client1, Client))
        client2 = yield c.get_connected_client()
        self.assertTrue(isinstance(client2, Client))
        ioloop = tornado.ioloop.IOLoop.instance()
        deadline = time.time() + 1
        cb = functools.partial(self._test_get_client2_cb, c, client1)
        self._test_get_client2_cb_called = False
        ioloop.add_timeout(deadline, cb)
        client3 = yield c.get_connected_client()
        self.assertTrue(self._test_get_client2_cb_called)
        self.assertTrue(client1 == client3)
        c.release_client(client2)
        c.release_client(client3)
        c.destroy() 
开发者ID:thefab,项目名称:tornadis,代码行数:19,代码来源:test_pool.py

示例2: shutdown

# 需要导入模块: from tornado import ioloop [as 别名]
# 或者: from tornado.ioloop import add_timeout [as 别名]
def shutdown(ioloop, server):
    ''' 关闭server

    :param server: tornado.httpserver.HTTPServer
    '''
    logging.info(
        "HTTP interpreter service will shutdown in %ss...", 1)
    server.stop()

    deadline = time.time() + 1

    def stop_loop():
        ''' 尝试关闭loop
        '''
        now = time.time()
        if now < deadline and (ioloop._callbacks or ioloop._timeouts):
            ioloop.add_timeout(now + 1, stop_loop)
        else:
            # 处理完现有的 callback 和 timeout 后
            ioloop.stop()
            logging.info('Shutdown!')

    stop_loop() 
开发者ID:JK-River,项目名称:RobotAIEngine,代码行数:25,代码来源:init.py

示例3: timeout

# 需要导入模块: from tornado import ioloop [as 别名]
# 或者: from tornado.ioloop import add_timeout [as 别名]
def timeout(self, delay, callback):
        ioloop.add_timeout(time.time() + float(delay), callback) 
开发者ID:fangpenlin,项目名称:bugbuzz-python,代码行数:4,代码来源:__init__.py

示例4: _timer_start

# 需要导入模块: from tornado import ioloop [as 别名]
# 或者: from tornado.ioloop import add_timeout [as 别名]
def _timer_start(self):
        self._timer_stop()
        if self._single:
            ioloop = tornado.ioloop.IOLoop.instance()
            self._timer = ioloop.add_timeout(
                datetime.timedelta(milliseconds=self.interval),
                self._on_timer)
        else:
            self._timer = tornado.ioloop.PeriodicCallback(
                self._on_timer,
                self.interval)
        self._timer.start() 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:14,代码来源:backend_webagg.py

示例5: draw_idle

# 需要导入模块: from tornado import ioloop [as 别名]
# 或者: from tornado.ioloop import add_timeout [as 别名]
def draw_idle(self):
        if self._pending_draw is None:
            ioloop = tornado.ioloop.IOLoop.instance()
            self._pending_draw = ioloop.add_timeout(
                datetime.timedelta(milliseconds=50),
                self._draw_idle_callback) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:8,代码来源:backend_webagg.py

示例6: _timer_start

# 需要导入模块: from tornado import ioloop [as 别名]
# 或者: from tornado.ioloop import add_timeout [as 别名]
def _timer_start(self):
        import datetime
        self._timer_stop()
        if self._single:
            ioloop = tornado.ioloop.IOLoop.instance()
            self._timer = ioloop.add_timeout(
                datetime.timedelta(milliseconds=self.interval),
                self._on_timer)
        else:
            self._timer = tornado.ioloop.PeriodicCallback(
                self._on_timer,
                self.interval)
        self._timer.start() 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:15,代码来源:backend_nbagg.py

示例7: stop

# 需要导入模块: from tornado import ioloop [as 别名]
# 或者: from tornado.ioloop import add_timeout [as 别名]
def stop(self):
    self.server.stop()
    ioloop = tornado.ioloop.IOLoop.instance()
    ioloop.add_timeout(time.time() + _SERVER_SHUTDOWN_BUFFER_S, ioloop.stop) 
开发者ID:google,项目名称:openhtf,代码行数:6,代码来源:web_gui_server.py


注:本文中的tornado.ioloop.add_timeout方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。