tornado的IOLoop.instance()方法和IOLoop.current()方法区别

Posted lucky-heng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tornado的IOLoop.instance()方法和IOLoop.current()方法区别相关的知识,希望对你有一定的参考价值。

在使用tornado时,经常有人疑惑IOLoop.current()方法和IOLoop.instance()方法的区别是什么。

IOLoop.current() 

返回当前线程的IOLoop,如果IOLoop当前正在运行或已被make_current标记为当前,则返回该实例。

如果没有当前IOLoop,则调用IOLoop.instance()方法创建一个IOLoop的实例返回。

 

IOLoop.instance()

返回全局 IOLoop实例。

 

在tornado 5.0之后的版本,instance()已经成为current()的别称。

 




以上是关于tornado的IOLoop.instance()方法和IOLoop.current()方法区别的主要内容,如果未能解决你的问题,请参考以下文章

RuntimeError: Cannot run in multiple processes: IOLoop instance has already been initialized. You ca

Tornado模板

Tornado基本功能的实现 | Tornado

01-tornado练习-tornado简介

Tornado实战

tornado之运行第一个tornado程序