Class: Watchr::EventHandler::Portable
- Inherits:
-
Object
- Object
- Watchr::EventHandler::Portable
- Includes:
- Base
- Defined in:
- lib/watchr/event_handlers/portable.rb
Instance Method Summary collapse
-
#initialize ⇒ Portable
constructor
A new instance of Portable.
-
#listen(monitored_paths) ⇒ Object
Enters listening loop.
-
#refresh(monitored_paths) ⇒ Object
Update list of monitored paths.
-
#trigger ⇒ Object
See if an event occured, and if so notify observers.
Methods included from Base
Constructor Details
#initialize ⇒ Portable
Returns a new instance of Portable.
6 7 8 |
# File 'lib/watchr/event_handlers/portable.rb', line 6 def initialize @reference_mtime = @reference_atime = @reference_ctime = Time.now end |
Instance Method Details
#listen(monitored_paths) ⇒ Object
Enters listening loop.
Will block control flow until application is explicitly stopped/killed.
14 15 16 17 |
# File 'lib/watchr/event_handlers/portable.rb', line 14 def listen(monitored_paths) @monitored_paths = monitored_paths loop { trigger; sleep(1) } end |
#refresh(monitored_paths) ⇒ Object
Update list of monitored paths.
26 27 28 |
# File 'lib/watchr/event_handlers/portable.rb', line 26 def refresh(monitored_paths) @monitored_paths = monitored_paths end |
#trigger ⇒ Object
See if an event occured, and if so notify observers.
20 21 22 23 |
# File 'lib/watchr/event_handlers/portable.rb', line 20 def trigger #:nodoc: path, type = detect_event notify(path, type) unless path.nil? end |