Token struct passed to suspend() and resume() methods in order to ensure
that the fiber is resumed for the same reason as it was suspended. The
token is constructed from a string, via the static opCall() method.
Usage example:
autotoken = MessageFiber.Token("something_happened");
fiber.suspend(token);
// Later on, somewhere elsefiber.resume(token);
Token struct passed to suspend() and resume() methods in order to ensure that the fiber is resumed for the same reason as it was suspended. The token is constructed from a string, via the static opCall() method.
Usage example: