package async_inotify

  1. Overview
  2. Docs
Async wrapper for inotify

Install

dune-project
 Dependency

Authors

Maintainers

Sources

async_inotify-v0.16.0.tar.gz
sha256=1c3a88ee4e7048f11093683cb7134cf5d2b76add85fea2f82bc0a45e3b27899a

doc/async_inotify/Async_inotify/Event/index.html

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