class Async::HTTP::Request

def idempotent?

def idempotent?
	method != POST && (body.nil? || body.empty?)
end