class Async::HTTP::Body::Writable

def status

def status
	if @finished
		'finished'
	elsif @closed
		'closing'
	else
		'waiting'
	end
end