class Protocol::HTTP::Body::Readable

def empty?

If this returns false, then calling read may return nil.
If this returns true, then calling read will definitely return nil.
Optimistically determine whether read (may) return any data.
def empty?
	false
end