码迷,mamicode.com
首页 > 其他好文 > 详细

tornado.ioloop.IOLoop.instance().start()中实例详解

时间:2014-07-30 17:48:44      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:tornado.ioloop.ioloop.instance().start()调用了那个start()

我们来分析一下tornado.ioloop.IOLoop.instance().start(),学习了tornado后,当启动服务的时候,我一直有一个疑惑,我们看一下源码,IOLoop类中instance()是一个单例模式返回IOLoop实例函数

    @staticmethod
    def instance():
        """Returns a global `IOLoop` instance.

        Most applications have a single, global `IOLoop` running on the
        main thread.  Use this method to get this instance from
        another thread.  To get the current thread‘s `IOLoop`, use `current()`.
        """
        if not hasattr(IOLoop, "_instance"):
            with IOLoop._instance_lock:
                if not hasattr(IOLoop, "_instance"):
                    # New instance after double check
                    IOLoop._instance = IOLoop()
        return IOLoop._instance
然后我们再看一下IOloop类的start()函数
    def start(self):
        """Starts the I/O loop.
        The loop will run until one of the callbacks calls `stop()`, which
        will make the loop stop after the current event iteration completes.
        """
       
        raise NotImplementedError()


本文出自 “lpj24” 博客,请务必保留此出处http://6167018.blog.51cto.com/6157018/1532899

tornado.ioloop.IOLoop.instance().start()中实例详解,布布扣,bubuko.com

tornado.ioloop.IOLoop.instance().start()中实例详解

标签:tornado.ioloop.ioloop.instance().start()调用了那个start()

原文地址:http://6167018.blog.51cto.com/6157018/1532899

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!