Sha256: face31f2bdfeb5467199a8eb36fd79602b21d654b63512c0b4ab585b43fe0633
Contents?: true
Size: 710 Bytes
Versions: 27
Compression:
Stored size: 710 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 MANDATORY = [].freeze def initialize(commands = {}) super(commands) end def cmd 'listConfig' end end end end
Version data entries
27 entries across 27 versions & 1 rubygems