Class: Vedeu::Output::Refresh Private
- Inherits:
-
Object
- Object
- Vedeu::Output::Refresh
- Defined in:
- lib/vedeu/output/refresh.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .all ⇒ Array<String|Symbol> private
Instance Method Summary collapse
-
#all ⇒ Array<String|Symbol>
private
Refresh all registered interfaces.
-
#initialize ⇒ Vedeu::Output::Refresh
constructor
private
Return a new instance of Vedeu::Output::Refresh.
Constructor Details
#initialize ⇒ Vedeu::Output::Refresh
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return a new instance of Vedeu::Output::Refresh.
21 |
# File 'lib/vedeu/output/refresh.rb', line 21 def initialize; end |
Class Method Details
.all ⇒ Array<String|Symbol>
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
14 15 16 |
# File 'lib/vedeu/output/refresh.rb', line 14 def self.all new.all end |
Instance Method Details
#all ⇒ Array<String|Symbol>
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Refresh all registered interfaces.
26 27 28 29 30 31 32 |
# File 'lib/vedeu/output/refresh.rb', line 26 def all Vedeu.timer('Refreshing all') do Vedeu.interfaces.zindexed.each do |name| Vedeu.trigger(:_refresh_view_, name) end end end |