DEBSOURCES
Skip Quicknav
sources / ruby-httpclient / 2.8.3%2Bgit20211122.4658227-1 / sample / async.rb
12345678
require 'httpclient' c = HTTPClient.new conn = c.get_async("http://dev.ctor.org/") io = conn.pop.content while str = io.read(40) p str end