"""
raise NotImplementedError()
- def running(self):
- """Returns true if this IOLoop is currently running."""
- raise NotImplementedError()
-
def time(self):
"""Returns the current time according to the IOLoop's clock.
self._stopped = True
self._waker.wake()
- def running(self):
- return self._running
-
def time(self):
return self.time_func()
.. automethod:: IOLoop.initialized
.. automethod:: IOLoop.install
.. automethod:: IOLoop.start
- .. automethod:: IOLoop.running
.. automethod:: IOLoop.stop
.. automethod:: IOLoop.close
``debug=True``) twice on the same `IOLoop` now does nothing (instead of
creating multiple periodic callbacks). Starting autoreload on
more than one `IOLoop` in the same process now logs a warning.
+* Method `IOLoop.running()` has been removed.