faraday/docs/introduction/streaming.md
2019-05-26 17:44:05 +01:00

906 B

layout title permalink hide
page Streaming Responses /introduction/streaming true

Sometimes you might need to receive a streaming response. You can do this with the on_data request option.

The on_data callback is a receives tuples of chunk Strings, and the total of received bytes so far.

This example implements such a callback:

# A buffer to store the streamed data
streamed = []

conn.get('/nigiri/sake.json') do |req|
  # Set a callback which will receive tuples of chunk Strings
  # and the sum of characters received so far
  req.options.on_data = Proc.new do |chunk, overall_received_bytes|
    puts "Received #{overall_received_bytes} characters"
    streamed << chunk
  end
end

# Joins all response chunks together 
streamed.join

The on_data streaming is currently only supported by the Net::HTTP adapter. Other adapters will be support this in the future.