class type proxy_t =This is the base class type of every proxy. Proxies usually have more methods than just this, however.object..end
method hydro_env : proxy_env_tmethod hydro_id : Hydro_types.identitymethod hydro_facet : string optionmethod hydro_twoway_call : Hydro_types.hintf ->
string ->
Hydro_types.value array ->
Hydro_types.call_params -> (Hydro_endpoint.Client.response -> unit) -> unithydro_twoway_call hi name args params pass_result:
Perform a twoway call to the function name of interface hi,
and pass the arguments args as input. The params control the
way the call is done. Once a result or error is available,
pass_result is invoked with the response.
This method takes care of resolving symbolic endpoints, and
manages the connections held to possible servers. If connections
cannot be established, alternate servers are tried. Idempotent
function calls are repeated if connections break.
method hydro_set_proxy_conf : proxy_conf_t -> unitmethod hydro_proxy_conf : proxy_conf_tmethod hydro_shutdown : unit -> unitmethod hydro_reset : unit -> unit