Module Rpc_kind.Interval

type t =
  1. | Poll_until_ok of {
    1. retry_interval : Core.Time_ns.Span.t;
    }
  2. | Poll_until_condition_met of {
    1. every : Core.Time_ns.Span.t;
    }
  3. | Poll of {
    1. every : Core.Time_ns.Span.t;
    }
  4. | Dispatch
include Sexplib0.Sexpable.S with type t := t
include Sexplib0.Sexpable.Of_sexp with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
include Sexplib0.Sexpable.Sexp_of with type t := t
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Equal.S with type t := t
val equal : t -> t -> bool