Class: Google::Cloud::Bigtable::AppProfile::List
- Inherits:
-
Array
- Object
- Array
- Google::Cloud::Bigtable::AppProfile::List
- Defined in:
- lib/google/cloud/bigtable/app_profile/list.rb
Overview
AppProfile::List is a special-case array with additional values.
Instance Method Summary collapse
- #all {|app_profile| ... } ⇒ Enumerator?
-
#next ⇒ AppProfile::List
Retrieves the next page of app profiles.
-
#next? ⇒ Boolean
Whether there is a next page of app profiles.
Instance Method Details
#all {|app_profile| ... } ⇒ Enumerator?
Retrieves remaining results by repeatedly invoking #next until
#next? returns false
. Calls the given block once for each
result, which is passed as the argument to the block.
An enumerator is returned if no block is given.
This method will make repeated API calls until all remaining results
are retrieved (unlike #each
, for example, which merely iterates
over the results returned by a single API call). Use with caution.
125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/google/cloud/bigtable/app_profile/list.rb', line 125 def all return enum_for :all unless block_given? results = self loop do results.each { |r| yield r } break unless next? grpc.next_page results = self.class.from_grpc grpc, service end end |
#next ⇒ AppProfile::List
Retrieves the next page of app profiles.
78 79 80 81 82 83 84 |
# File 'lib/google/cloud/bigtable/app_profile/list.rb', line 78 def next ensure_grpc! return nil unless next? grpc.next_page self.class.from_grpc grpc, service end |
#next? ⇒ Boolean
Whether there is a next page of app profiles.
57 58 59 |
# File 'lib/google/cloud/bigtable/app_profile/list.rb', line 57 def next? grpc.next_page? end |