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