class Falcon::Adapters::Input

def rewind

Returns:
  • (Boolean) - whether the body could be rewound.
def rewind
	if @body and @body.respond_to? :rewind
		# If the body is not rewindable, this will fail.
		@body.rewind
		@buffer = nil
		@finished = false
		
		return true
	end
	
	return false
end