class Protocol::HTTP::Body::Writable

def ready?

@returns [Boolean] Whether the body is ready to be read from, without blocking.
def ready?
	!@queue.empty? || @queue.closed?
end