Module Async_inotify.Event

type move =
| Away of string
| Into of string
| Move of string * string
val sexp_of_move : move -> Ppx_sexp_conv_lib.Sexp.t
type t =
| Created of string
| Unlinked of string
| Modified of string
| 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

| Queue_overflow
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val to_string : t -> string