class Protocol::HTTP2::Stream

def close(error = nil)

This method should only be used by `Connection#close`.
Transition directly to closed state. Do not pass go, do not collect $200.
def close(error = nil)
	unless closed?
		@state = :closed
		self.closed(error)
	end
end