class Async::Task

def annotation

@returns [Object] The annotation of the task.
def annotation
	if @fiber
		@fiber.annotation
	else
		super
	end
end