class Async::Task

def self.current?

@returns [Interface(:async) | Nil]
Check if there is a task defined for the current fiber.
def self.current?
	Fiber.current.async_task
end