Method: Roby::Application#ui_event
- Defined in:
- lib/roby/app.rb
#ui_event(name, *args) ⇒ Object
Sends a message to all UI event listeners
3199 3200 3201 3202 3203 |
# File 'lib/roby/app.rb', line 3199 def ui_event(name, *args) each_ui_event_listener do |block| block.call(name, *args) end end |