Class: HTTP::Response::Streamer
- Inherits:
-
Object
- Object
- HTTP::Response::Streamer
- Defined in:
- lib/webmock/http_lib_adapters/http_rb/streamer.rb
Instance Method Summary collapse
- #close ⇒ Object
- #finished_request? ⇒ Boolean
-
#initialize(str, encoding: Encoding::BINARY) ⇒ Streamer
constructor
A new instance of Streamer.
- #readpartial(size = nil, outbuf = nil) ⇒ Object
- #sequence_id ⇒ Object
Constructor Details
#initialize(str, encoding: Encoding::BINARY) ⇒ Streamer
Returns a new instance of Streamer.
6 7 8 9 |
# File 'lib/webmock/http_lib_adapters/http_rb/streamer.rb', line 6 def initialize(str, encoding: Encoding::BINARY) @io = StringIO.new str @encoding = encoding end |
Instance Method Details
#close ⇒ Object
24 25 26 |
# File 'lib/webmock/http_lib_adapters/http_rb/streamer.rb', line 24 def close @io.close end |
#finished_request? ⇒ Boolean
28 29 30 |
# File 'lib/webmock/http_lib_adapters/http_rb/streamer.rb', line 28 def finished_request? @io.eof? end |
#readpartial(size = nil, outbuf = nil) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/webmock/http_lib_adapters/http_rb/streamer.rb', line 11 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 ⇒ Object
32 33 34 |
# File 'lib/webmock/http_lib_adapters/http_rb/streamer.rb', line 32 def sequence_id -1 end |