* Begins execution of the effect associated with this fiber on in the * background. This can be called to "kick off" execution of a fiber after * it has been created.
(effect: Effect.Effect<A, E, any>)
| 351 | * it has been created. |
| 352 | */ |
| 353 | resume<A, E>(effect: Effect.Effect<A, E, any>): void { |
| 354 | this.tell(FiberMessage.resume(effect)) |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * The status of the fiber. |
no test coverage detected