Fiber.yield(args, ...) â obj
Class Public methods
Yields control back to the context that resumed the fiber, passing along
any arguments that were passed to it. The fiber will resume processing at
this point when resume
is called next. Any arguments passed to
the next resume
will be the value that this
Fiber.yield
expression evaluates to.
Please login to continue.