package async_inotify

  1. Overview
  2. Docs

Module Async_inotify.EventSource

Sourcemodule Selector : sig ... end
Sourcetype move =
  1. | Away of string
  2. | Into of string
  3. | Move of string * string
Sourceval sexp_of_move : move -> Sexplib0.Sexp.t
Sourcetype t =
  1. | Created of string
  2. | Unlinked of string
  3. | Modified of string
  4. | Moved of move
    (*

    Queue overflow means that you are not consuming events fast enough and just lost some of them. This means that some changes to files you want might go unnoticed

    *)
  5. | Queue_overflow
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Comparable.S with type t := t
Sourceval compare : t Base__Ppx_compare_lib.compare
include Ppx_compare_lib.Equal.S with type t := t
Sourceval equal : t Base__Ppx_compare_lib.equal
Sourceval to_string : t -> string