Companion
Functions
Attach the given debugger to this fiber. Do nothing if the fiber is already attached to another debugger.
This fiber was captured by a debugger. Release it from that debugger, allowing it to continue running freely when/if its state indicates it should.
Set the success and failure actions of this fiber. The former runs if the fiber succeeds, passing the resulting AvailObject, and also stashing it in the fiber. The latter runs if the fiber fails, passing the Throwable that caused the failure.
Ensure the specified action is invoked with this fiber's reified continuation as soon as it's available. Note that this triggers an interrupt on the fiber to ensure a timely capture of the stack.
Properties
Check if this fiber is allowed to be performing styling operations. For it to be allowed, the fiber must have been launched in the VM by newStylerFiber. Answer true if the fiber is permitted to style, otherwise false.
The fiber's current A_Continuation if suspended, otherwise nil.
Answer the continuation that accepts the Throwable responsible for abnormal termination of this fiber.
Answer the FiberDescriptor.FiberHelper associated with this A_Fiber.
Answer the continuation that accepts the result produced by the receiver's successful completion.
The primitive A_Function that's suspending the fiber.
The TextInterface for routing I/O to and from this fiber.