Class: Twitter::Cursor

Inherits:
Object
  • Object
show all
Includes:
Enumerable, Utils
Defined in:
lib/twitter/cursor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Utils

flat_pmap, pmap

Methods included from Enumerable

#each

Constructor Details

#initialize(key, klass, request, limit = nil) ⇒ Twitter::Cursor

Initializes a new Cursor

Parameters:

  • key (String, Symbol)

    The key to fetch the data from the response

  • klass (Class)

    The class to instantiate objects in the response

  • request (Twitter::REST::Request)
  • limit (Integer) (defaults to: nil)

    After reaching the limit, we stop fetching next page



21
22
23
24
25
26
27
28
29
30
31
# File 'lib/twitter/cursor.rb', line 21

def initialize(key, klass, request, limit = nil)
  @key = key.to_sym
  @klass = klass
  @client = request.client
  @request_method = request.verb
  @path = request.path
  @options = request.options
  @collection = []
  @limit = limit
  self.attrs = request.perform
end

Instance Attribute Details

#attrsHash Also known as: to_h

Returns:

  • (Hash)


10
11
12
# File 'lib/twitter/cursor.rb', line 10

def attrs
  @attrs
end