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)
| 532 | return future_cell[0].result() |
| 533 | |
| 534 | def time(self) -> float: |
| 535 | """Returns the current time according to the `IOLoop`'s clock. |
| 536 | |
| 537 | The return value is a floating-point number relative to an |
| 538 | unspecified time in the past. |
| 539 | |
| 540 | Historically, the IOLoop could be customized to use e.g. |
| 541 | `time.monotonic` instead of `time.time`, but this is not |
| 542 | currently supported and so this method is equivalent to |
| 543 | `time.time`. |
| 544 | |
| 545 | """ |
| 546 | return time.time() |
| 547 | |
| 548 | def add_timeout( |
| 549 | self, |
no outgoing calls