Class: FbGraph::Connection

Inherits:
Collection show all
Defined in:
lib/fb_graph/connection.rb

Instance Attribute Summary collapse

Attributes inherited from Collection

#total_count

Instance Method Summary collapse

Constructor Details

#initialize(owner, connection, options = {}) ⇒ Connection

Returns a new instance of Connection.



5
6
7
8
9
10
11
# File 'lib/fb_graph/connection.rb', line 5

def initialize(owner, connection, options = {})
  @owner = owner
  @options = options
  @connection = connection
  @collection = options.delete(:collection) || Collection.new
  replace collection
end

Instance Attribute Details

#collectionObject

Returns the value of attribute collection.



3
4
5
# File 'lib/fb_graph/connection.rb', line 3

def collection
  @collection
end

#connectionObject

Returns the value of attribute connection.



3
4
5
# File 'lib/fb_graph/connection.rb', line 3

def connection
  @connection
end

#optionsObject

Returns the value of attribute options.



3
4
5
# File 'lib/fb_graph/connection.rb', line 3

def options
  @options
end

#ownerObject

Returns the value of attribute owner.



3
4
5
# File 'lib/fb_graph/connection.rb', line 3

def owner
  @owner
end

Instance Method Details

#next(_options_ = {}) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/fb_graph/connection.rb', line 13

def next(_options_ = {})
  if self.collection.next.present?
    self.owner.send(self.connection, self.options.merge(_options_).merge(self.collection.next))
  else
    self.class.new(self.owner, self.connection)
  end
end

#previous(_options_ = {}) ⇒ Object



21
22
23
24
25
26
27
# File 'lib/fb_graph/connection.rb', line 21

def previous(_options_ = {})
  if self.collection.previous.present?
    self.owner.send(self.connection, self.options.merge(_options_).merge(self.collection.previous))
  else
    self.class.new(self.owner, self.connection)
  end
end