You can search for identifiers within the package.
in-package search v0.2.0
type id_t = private string
Identity of a socket connected to the router.
val id_of_string : string -> id_t
id_of_string s coerces s into an id_t.
id_of_string s
s
id_t
val recv : [ `Router ] t -> (id_t * string list) Lwt.t
recv socket waits for a message on socket without blocking other Lwt threads.
recv socket
socket
val send : [ `Router ] t -> id_t -> string list -> unit Lwt.t
send socket id message sends message on socket to id without blocking other Lwt threads.
send socket id message
message
id