package redis-async

  1. Overview
  2. Docs
module Connection_state : sig ... end
type t = {
  1. leader : Core.Host_and_port.t;
  2. connection_state : Connection_state.t;
  3. replication_offset : int;
}
val replication_offset : t -> int
val connection_state : t -> Connection_state.t
val leader : t -> Core.Host_and_port.t
module Fields : sig ... end
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t -> t -> int