class FChange::Event

which are passed to that watcher’s callback.
Each {Watcher} can fire many events,
An event caused by a change on the filesystem.

def callback!

Other tags:
    Private: -
def callback!
  @watcher.callback!(self)
end

def initialize(watcher)

Parameters:
  • watcher (Watcher) -- The {Watcher} that fired the event

Other tags:
    Private: -
def initialize(watcher)
  @watcher = watcher
end