module Groonga::Client::Protocol::HTTP::Synchronous::HTTPClient::ReadTimeoutConvertable

Public Instance Methods

rbuf_fill() click to toggle source
Calls superclass method
# File lib/groonga/client/protocol/http/synchronous.rb, line 36
def rbuf_fill
  begin
    super
  rescue Net::ReadTimeout => error
    raise ReadTimeout, error.message, error.backtrace
  end
end