module Hyperstack::State::Observer

Public Instance Methods

observing(immediate_update: false, rendering: false, update_objects: false, &block) click to toggle source
# File lib/hyperstack/state/observer.rb, line 4
def observing(immediate_update: false, rendering: false, update_objects: false, &block)
  Internal::State::Mapper.observing(self, immediate_update, rendering, update_objects, &block)
end
remove() click to toggle source
# File lib/hyperstack/state/observer.rb, line 12
def remove
  Internal::State::Mapper.remove(self)
end
update_objects_to_observe() click to toggle source
# File lib/hyperstack/state/observer.rb, line 8
def update_objects_to_observe
  Internal::State::Mapper.update_objects_to_observe(self)
end