class Async::HTTP::Protocol::HTTP2::Response::Stream

def notify!

Notify anyone waiting on the response headers to be received (or failure).
def notify!
	if notification = @notification
		@notification = nil
		notification.signal
	end
end