class Protocol::HTTP::Request

def idempotent?

Whether the request can be replayed without side-effects.
def idempotent?
	@method != Methods::POST && (@body.nil? || @body.empty?)
end