class HTTP::Response::Streamer
Public Class Methods
new(str, encoding: Encoding::BINARY)
click to toggle source
# File lib/webmock/http_lib_adapters/http_rb/streamer.rb, line 4 def initialize(str, encoding: Encoding::BINARY) @io = StringIO.new str @encoding = encoding end
Public Instance Methods
close()
click to toggle source
# File lib/webmock/http_lib_adapters/http_rb/streamer.rb, line 22 def close @io.close end
readpartial(size = nil, outbuf = nil)
click to toggle source
# File lib/webmock/http_lib_adapters/http_rb/streamer.rb, line 9 def readpartial(size = nil, outbuf = nil) unless size if defined?(HTTP::Client::BUFFER_SIZE) size = HTTP::Client::BUFFER_SIZE elsif defined?(HTTP::Connection::BUFFER_SIZE) size = HTTP::Connection::BUFFER_SIZE end end chunk = @io.read size, outbuf chunk.force_encoding(@encoding) if chunk end
sequence_id()
click to toggle source
# File lib/webmock/http_lib_adapters/http_rb/streamer.rb, line 26 def sequence_id -1 end