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

def prepare_input(length)

Returns:
  • (Input) - the input body.
def prepare_input(length)
	if @input.nil?
		@input = Input.new(self, length)
	else
		raise ArgumentError, "Input body already prepared!"
	end
end