class Async::HTTP::Body::Streamable

def read

def read
	unless chunk = super
		@callback.call
	end
	
	return chunk
end