Returns the current time according to the `IOLoop`'s clock. The return value is a floating-point number relative to an unspecified time in the past. Historically, the IOLoop could be customized to use e.g. `time.monotonic` instead of `time.time`, but this is not
(self)
| 547 | return future_cell["future"].result() |
| 548 | |
| 549 | def time(self) -> float: |
| 550 | """Returns the current time according to the `IOLoop`'s clock. |
| 551 | |
| 552 | The return value is a floating-point number relative to an |
| 553 | unspecified time in the past. |
| 554 | |
| 555 | Historically, the IOLoop could be customized to use e.g. |
| 556 | `time.monotonic` instead of `time.time`, but this is not |
| 557 | currently supported and so this method is equivalent to |
| 558 | `time.time`. |
| 559 | |
| 560 | """ |
| 561 | return time.time() |
| 562 | |
| 563 | def add_timeout( |
| 564 | self, |
no outgoing calls