Module Values.EndpointSource

Represents the information required for client programs to connect to a cache node. This value is read-only.

Sourcetype nonrec t = {
  1. address : String_.t option;
    (*

    The DNS hostname of the cache node.

    *)
  2. port : Integer.t option;
    (*

    The port number that the cache engine is listening on.

    *)
}
Sourceval make : ?address:??? -> ?port:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t