class EventMachine::FileWatch

def stop_watching

This will be called automatically when a file is deleted. User code may call it as well.
This involves cleaning up the underlying monitoring details with kqueue/inotify, and in turn firing {EventMachine::Connection#unbind}.

Discontinue monitoring of the file.
def stop_watching
  EventMachine::unwatch_filename(@signature)
end # stop_watching