class Protocol::HTTP::Body::Readable
def discard
The default implementation simply reads all chunks until the body is empty.
Discard the body as efficiently as possible.
def discard while chunk = self.read end end
def discard while chunk = self.read end end