class Async::HTTP::Body::Statistics

def read

def read
	chunk = super
	
	@first_chunk_time ||= Clock.now
	
	if chunk
		@sent += chunk.length
	else
		complete_statistics
	end
	
	return chunk
end