class Async::Task

def alive?

@returns [Boolean] Whether the internal fiber is alive, i.e. it is actively executing.
def alive?
	@fiber&.alive?
end