Class: Gcloud::Pubsub::Topic::List

Inherits:
Array
  • Object
show all
Defined in:
lib/gcloud/pubsub/topic/list.rb

Overview

Topic::List is a special case Array with additional values.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arr = [], token = nil) ⇒ List

Create a new Topic::List with an array of values.



32
33
34
35
36
# File 'lib/gcloud/pubsub/topic/list.rb', line 32

def initialize arr = [], token = nil
  super arr
  @token = token
  @token = nil if @token == ""
end

Instance Attribute Details

#tokenObject

If not empty, indicates that there are more topics that match the request and this value should be passed to the next Project#topics to continue.



28
29
30
# File 'lib/gcloud/pubsub/topic/list.rb', line 28

def token
  @token
end

Class Method Details

.from_grpc(grpc_list, service) ⇒ Object

object.



41
42
43
44
45
46
# File 'lib/gcloud/pubsub/topic/list.rb', line 41

def self.from_grpc grpc_list, service
  topics = Array(grpc_list.topics).map do |grpc|
    Topic.from_grpc grpc, service
  end
  new topics, grpc_list.next_page_token
end