class Async::Task

def current?

@returns [Boolean] Whether this task is the currently executing task.
def current?
	Fiber.current.equal?(@fiber)
end