Sha256: 003afe78351189d7462e11d59df448c92d41053e111c51721af4c06e491106ff

Contents?: true

Size: 1.47 KB

Versions: 3

Compression:

Stored size: 1.47 KB

Contents

#--
# Copyright 2015 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module Gcloud
  module Pubsub
    class Topic
      ##
      # Topic::List is a special case Array with additional values.
      class List < DelegateClass(::Array)
        ##
        # If not empty, indicates that there are more topics
        # that match the request and this value should be passed to
        # the next Gcloud::PubSub::Project#topics to continue.
        attr_accessor :token

        ##
        # Create a new Topic::List with an array of values.
        def initialize arr = [], token = nil
          super arr
          @token = token
        end

        ##
        # New Topic::List from a response object.
        def self.from_response resp, conn #:nodoc:
          topics = Array(resp.data["topics"]).map do |gapi_object|
            Topic.from_gapi gapi_object, conn
          end
          new topics, resp.data["nextPageToken"]
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gcloud-0.4.1 lib/gcloud/pubsub/topic/list.rb
gcloud-0.4.0 lib/gcloud/pubsub/topic/list.rb
gcloud-0.3.1 lib/gcloud/pubsub/topic/list.rb