6 7 8 9 10
# File 'lib/restrack/async_web_service.rb', line 6 def call(body) body.each do |chunk| @body_callback.call(chunk) end end
12 13 14
# File 'lib/restrack/async_web_service.rb', line 12 def each(&blk) @body_callback = blk end