Module: MiqBrokerVimConnectionCheck

Instance Method Summary collapse

Instance Method Details

#connectionRemoved?Boolean

Returns:

  • (Boolean)


91
92
93
94
95
# File 'lib/VMwareWebService/MiqVimBrokerMods.rb', line 91

def connectionRemoved?
  return false unless self.respond_to?(:invObj)
  return false unless invObj.respond_to?(:connectionRemoved?)
  invObj.connectionRemoved?
end