Transfers execution to this fiber object. The calling context will be suspended until the fiber calls Fiber.yield() or until it terminates via an unhandled exception.
Rethrow any unhandled exception which may have caused this fiber to terminate.
In: This fiber must be in state HOLD.
Any exception not handled by this fiber if rethrow = false, null otherwise.
Any exception not handled by the joined thread.
See Implementation
Transfers execution to this fiber object. The calling context will be suspended until the fiber calls Fiber.yield() or until it terminates via an unhandled exception.