class INotify::Notifier

def process

Other tags:
    See: #run -
def process
  read_events.each do |event|
    event.callback!
    event.flags.include?(:ignored) && event.notifier.watchers.delete(event.watcher_id)
  end
end