class Rubyipmi::ObservableHash
Public Instance Methods
delete_notify(del)
click to toggle source
# File lib/rubyipmi/observablehash.rb, line 14 def delete_notify(del) delete(del) notify_observers(self) end
merge_notify!(newhash)
click to toggle source
this method will merge the hash and then notify all observers, if any
# File lib/rubyipmi/observablehash.rb, line 8 def merge_notify!(newhash) merge!(newhash) changed notify_observers(self) end