Sha256: 81f7f3c1414faf8263535f7220d4bed808dfaf8ef655a3313e48c1e94cc70a96

Contents?: true

Size: 849 Bytes

Versions: 4

Compression:

Stored size: 849 Bytes

Contents

# frozen_string_literal: true

module Evostream
  module Commands
    # Returns a detailed set of information about a stream.
    class GetStreamInfo < Command
      def initialize(commands = {})
        super(commands)
      end

      def cmd
        "getStreamInfo?params=#{encode_64}"
      end

      private

      # The uniqueId of the stream. Usually a value returned by listStreamsIDs.
      # This parameter is not mandatory but either this or the localStreamName
      # should be present to identify the particular stream
      def id(param = 'null')
        "id=#{param}"
      end

      # The name of the stream. This parameter is not mandatory but either this
      # or the id should be present to identify the particular stream
      def local_stream_name(param = '')
        "localStreamName=#{param}"
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
evostream-event-0.3.2.pre.55 lib/evostream/event/commands/get_stream_info.rb
evostream-event-0.3.1 lib/evostream/event/commands/get_stream_info.rb
evostream-event-0.3.1.pre.53 lib/evostream/event/commands/get_stream_info.rb
evostream-event-0.3.1.pre.52 lib/evostream/event/commands/get_stream_info.rb