class Async::Notification

def signal(value = nil, task: Task.current)

Signal to a given task that it should resume operations.
def signal(value = nil, task: Task.current)
	return if @waiting.empty?
	
	Fiber.scheduler.push Signal.new(self.exchange, value)
	
	return nil
end