class Andromeda::Sync::Bracket
Passes all input and waits for the associated scope to return to the start value (will only work if there is no concurrent modification to the associated scope)
Public Instance Methods
init_guide()
click to toggle source
# File lib/andromeda/sync.rb, line 58 def init_guide ; ::Andromeda::Guides::LocalGuide end
on_enter(key, val)
click to toggle source
Calls superclass method
Andromeda::Plan#on_enter
# File lib/andromeda/sync.rb, line 60 def on_enter(key, val) scope_ = current_scope value_ = scope_.value super key, val scope_.wait_until_eq value_ end