Sha256: 4b9700b7f65003d149e6df3794ad1641b512f286fc7c9c580279ed9012338d0f

Contents?: true

Size: 681 Bytes

Versions: 10

Compression:

Stored size: 681 Bytes

Contents

# frozen_string_literal: true

module Evostream
  module Commands
    # Returns a list with all push/pull configurations.
    #
    # Whenever the pullStream or pushStream interfaces are called, a record
    # containing the details of the pull or push is created in the
    # pullpushconfig.xml file. Then, the next time the EMS is started, the
    # pullpushconfig.xml file is read, and the EMS attempts to reconnect all of
    # the previous pulled or pushed streams.
    #
    # This function has no parameters.
    class ListConfig < Command
      def initialize(commands = {})
        super(commands)
      end

      def cmd
        'listConfig'
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
evostream-event-1.0.0.pre.59 lib/evostream/event/commands/list_config.rb
evostream-event-1.0.0.pre.58 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.2.pre.57 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.2.pre.56 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.2.pre.55 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.1 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.1.pre.53 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.1.pre.52 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.0 lib/evostream/event/commands/list_config.rb
evostream-event-0.3.0.pre.48 lib/evostream/event/commands/list_config.rb