From 78889b82139d1a453c912bfeee3ed10ffe5be118 Mon Sep 17 00:00:00 2001 From: Alexander Bushnev Date: Fri, 24 Jan 2025 10:09:14 +0100 Subject: [PATCH] Add docs --- docs/api.rst | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/docs/api.rst b/docs/api.rst index c2b4be996..6d65fc516 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -1213,6 +1213,46 @@ See details at :ref:`owned_types_concept` .. c:function:: void z_reply_clone(z_owned_reply_t * dst, const z_loaned_reply_t * reply) .. c:function:: const z_loaned_reply_t * z_reply_loan(const z_owned_reply_t * reply) +Querier +======= + +Represents a Zenoh Querier entity. + +Types +----- + +See details at :ref:`owned_types_concept` + +.. c:type:: z_owned_querier_t +.. c:type:: z_loaned_querier_t +.. c:type:: z_moved_querier_t + +Option Types +------------ + +.. autoctype:: types.h::z_querier_options_t +.. autoctype:: types.h::z_querier_get_options_t + +Constants +--------- + +Functions +--------- +.. autocfunction:: primitives.h::z_declare_querier +.. autocfunction:: primitives.h::z_undeclare_querier +.. autocfunction:: primitives.h::z_querier_get +.. autocfunction:: primitives.h::z_querier_keyexpr + +.. autocfunction:: primitives.h::z_querier_options_default +.. autocfunction:: primitives.h::z_querier_get_options_default + +Ownership Functions +------------------- + +See details at :ref:`owned_types_concept` + +.. c:function:: const z_loaned_querier_t * z_querier_loan(const z_owned_querier_t * closure) +.. c:function:: void z_querier_drop(z_moved_querier_t * closure) Scouting ========