class Async::Task

def self.current?

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