Module Sync_status

val to_string : [< `Bootstrap | `Catchup | `Connecting | `Listening | `Offline | `Synced ] -> string

Sync_status represent states interacting with peers in the coda protocol. When the protocol is starting, the node should be in the CONNECT state trying to connect to a peer. Once it connects to a peer, the node should be in the LISTENING state waiting for peers to send a message to them. When the node receives a constant flow of messages, its state should be SYNCED. However, when the node is bootstrapping, its state is BOOTSTRAPPING. If it hasn’t received messages for some time (Mina_compile_config.inactivity_secs), then it is OFFLINE.

val of_string : string -> ( [> `Bootstrap | `Catchup | `Connecting | `Listening | `Offline | `Synced ], Core_kernel.Error.t ) Core_kernel._result
val to_yojson : [< `Bootstrap | `Catchup | `Connecting | `Listening | `Offline | `Synced ] -> [> `String of string ]
val of_yojson : Yojson.Safe.t -> ( [> `Bootstrap | `Catchup | `Connecting | `Listening | `Offline | `Synced ], string ) Core_kernel.Result.t
module T : sig ... end
include module type of struct include T end
module Stable = T.Stable
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val equal : t -> t -> bool
val all : t list
val compare : T.t -> T.t -> Core_kernel__.Import.int
val hash_fold_t : Ppx_hash_lib.Std.Hash.state -> T.t -> Ppx_hash_lib.Std.Hash.state
val hash : T.t -> Ppx_hash_lib.Std.Hash.hash_value
val hashable : T.t Core_kernel__.Hashtbl.Hashable.t
module Table : sig ... end
module Hash_set : sig ... end
module Hash_queue : sig ... end
val check_conv : ( t -> 'a ) -> ( 'b -> 'c ) -> ( 'd -> t ) -> bool