* In the background, interrupts the fiber as if interrupted from the specified fiber.
(fiberId: FiberId.FiberId)
| 517 | * In the background, interrupts the fiber as if interrupted from the specified fiber. |
| 518 | */ |
| 519 | interruptAsFork(fiberId: FiberId.FiberId): Effect.Effect<void> { |
| 520 | return core.sync(() => this.tell(FiberMessage.interruptSignal(internalCause.interrupt(fiberId)))) |
| 521 | } |
| 522 | |
| 523 | /** |
| 524 | * In the background, interrupts the fiber as if interrupted from the specified fiber. |