Class: Fswatch::Monitor
- Inherits:
-
Object
- Object
- Fswatch::Monitor
- Defined in:
- lib/fswatch/monitor.rb
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Monitor
constructor
A new instance of Monitor.
- #start ⇒ Object
- #stop ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Monitor
Returns a new instance of Monitor.
3 4 5 6 7 |
# File 'lib/fswatch/monitor.rb', line 3 def initialize( = {}) # stub method # actual implementation is located in C extension - `ext/fswatch/monitor.c` raise NotImplementedError, "Called stub method. Looks like C Extension failed to load" end |
Instance Method Details
#start ⇒ Object
9 10 11 12 13 |
# File 'lib/fswatch/monitor.rb', line 9 def start # stub method # actual implementation is located in C extension - `ext/fswatch/monitor.c` raise NotImplementedError, "Called stub method. Looks like C Extension failed to load" end |
#stop ⇒ Object
15 16 17 18 19 |
# File 'lib/fswatch/monitor.rb', line 15 def stop # stub method # actual implementation is located in C extension - `ext/fswatch/monitor.c` raise NotImplementedError, "Called stub method. Looks like C Extension failed to load" end |