Class: Net::BufferedIO

Inherits:
Object show all
Defined in:
lib/ibm_cloud_rest/monkeypatches.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#old_rbuf_fillObject



33
# File 'lib/ibm_cloud_rest/monkeypatches.rb', line 33

alias :old_rbuf_fill :rbuf_fill

#rbuf_fillObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/ibm_cloud_rest/monkeypatches.rb', line 34

def rbuf_fill
  if @io.respond_to?(:read_nonblock)
    begin
      @rbuf << @io.read_nonblock(65536)
    rescue Errno::EWOULDBLOCK
      if IO.select([@io], nil, nil, @read_timeout)
        retry
      else
        raise Timeout::Error
      end
    end
  else
    timeout(@read_timeout) do
      @rbuf << @io.sysread(65536)
    end
  end
end