* Determines if the fiber is interrupted. * * **NOTE**: This method is safe to invoke on any fiber, but if not invoked * on this fiber, then values derived from the fiber's state (including the * log annotations and log level) may not be up-to-date.
()
| 741 | * log annotations and log level) may not be up-to-date. |
| 742 | */ |
| 743 | isInterrupted(): boolean { |
| 744 | return !internalCause.isEmpty(this.getFiberRef(core.currentInterruptedCause)) |
| 745 | } |
| 746 | |
| 747 | /** |
| 748 | * Adds an interruptor to the set of interruptors that are interrupting this |
no test coverage detected