class RestClient::Payload::Base

Public Instance Methods

each(&block) click to toggle source
# File lib/restclient/components.rb, line 161
def each(&block)
  @stream.each(&block)
end
gets(*args) click to toggle source
# File lib/restclient/components.rb, line 157
def gets(*args)
  @stream.gets(*args)
end
rewind(*args) click to toggle source
# File lib/restclient/components.rb, line 153
def rewind(*args)
  @stream.rewind(*args)
end