class Evostream::Commands::ListStreams

Provides a detailed description of all active streams.

Constants

MANDATORY

Attributes

command[R]

Public Class Methods

new(commands = {}) click to toggle source
Calls superclass method Evostream::Commands::Command::new
# File lib/evostream/event/commands/list_streams.rb, line 9
def initialize(commands = {})
  super(commands)
end

Public Instance Methods

cmd() click to toggle source
Calls superclass method Evostream::Commands::Command#cmd
# File lib/evostream/event/commands/list_streams.rb, line 13
def cmd
  super
  "listStreams?params=#{encode64}"
end

Private Instance Methods

disable_internal_streams(param = 'true') click to toggle source

If this is 1 (true), internal streams (origin-edge related) are filtered out from the list

# File lib/evostream/event/commands/list_streams.rb, line 24
def disable_internal_streams(param = 'true')
  "disableInternalStreams=#{param}"
end