NATS C Client with JetStream and Streaming support
- 3.9.0-beta
+ 3.10.0-beta
The nats.io C Client, Supported by Synadia Communications Inc.
|
@@ -194,184 +194,184 @@
131 nle->tail = newEvent;
- 133 uv_mutex_unlock(nle->lock);
-
- 135 res = uv_async_send(nle->scheduler);
-
-
-
-
-
- 141 natsLibuvPoll(uv_poll_t* handle,
int status,
int events)
-
- 143 natsLibuvEvents *nle = (natsLibuvEvents*)handle->data;
+
+
+
+
+
+
+ 139 res = uv_async_send(nle->scheduler);
+ 140 uv_mutex_unlock(nle->lock);
+
+
+
-
-
-
-
-
-
-
-
-
- 154 if (events & UV_READABLE)
+
+ 146 natsLibuvPoll(uv_poll_t* handle,
int status,
int events)
+
+ 148 natsLibuvEvents *nle = (natsLibuvEvents*)handle->data;
+
+
+
+
+
+
-
- 157 if (events & UV_WRITABLE)
-
-
-
-
- 162 uvPollUpdate(natsLibuvEvents *nle,
int eventType,
bool add)
-
-
+
+
+
+ 159 if (events & UV_READABLE)
+
+
+ 162 if (events & UV_WRITABLE)
+
+
- 166 if (eventType == NATS_LIBUV_READ)
-
-
- 169 nle->events |= UV_READABLE;
-
- 171 nle->events &= ~UV_READABLE;
-
-
-
-
- 176 nle->events |= UV_WRITABLE;
-
- 178 nle->events &= ~UV_WRITABLE;
-
-
-
- 182 res = uv_poll_start(nle->handle, nle->events, natsLibuvPoll);
-
- 184 res = uv_poll_stop(nle->handle);
-
-
-
-
-
-
-
-
- 193 uvHandleClosedCb(uv_handle_t *handle)
-
-
-
-
-
- 199 uvAsyncAttach(natsLibuvEvents *nle)
-
-
-
-
- 204 if (nle->handle != NULL)
-
- 206 uv_close((uv_handle_t*) nle->handle, uvHandleClosedCb);
-
-
-
- 210 nle->handle = (uv_poll_t*) malloc(
sizeof(uv_poll_t));
- 211 if (nle->handle == NULL)
-
-
-
-
- 216 #if UV_VERSION_MAJOR <= 1
- 217 if (uv_poll_init_socket(nle->loop, nle->handle, nle->socket) != 0)
-
- 219 if (uv_poll_init(nle->loop, nle->handle, nle->socket) != 0)
-
-
-
-
-
- 225 && (nle->handle->data = (
void*) nle)
- 226 && (uv_poll_start(nle->handle, UV_READABLE, natsLibuvPoll) != 0))
-
-
-
-
-
-
-
-
- 235 finalCloseCb(uv_handle_t* handle)
-
- 237 natsLibuvEvents *nle = (natsLibuvEvents*)handle->data;
- 238 natsLibuvEvent *event;
-
- 240 while ((event = nle->head) != NULL)
-
- 242 nle->head =
event->next;
-
-
-
- 246 free(nle->scheduler);
- 247 uv_mutex_destroy(nle->lock);
-
-
-
-
-
- 253 closeSchedulerCb(uv_handle_t* scheduler)
-
- 255 natsLibuvEvents *nle = (natsLibuvEvents*) scheduler->data;
-
- 257 uv_close((uv_handle_t*) nle->handle, finalCloseCb);
-
-
-
- 261 uvAsyncDetach(natsLibuvEvents *nle)
-
- 263 uv_close((uv_handle_t*) nle->scheduler, closeSchedulerCb);
-
-
-
- 267 uvAsyncCb(uv_async_t *handle)
-
- 269 natsLibuvEvents *nle = (natsLibuvEvents*) handle->data;
-
- 271 natsLibuvEvent *event = NULL;
-
+
+ 167 uvHandleClosedCb(uv_handle_t *handle)
+
+
+
+
+
+ 173 uvPollUpdate(natsLibuvEvents *nle,
int eventType,
bool add)
+
+ 175 if (eventType == NATS_LIBUV_READ)
+
+
+ 178 nle->events |= UV_READABLE;
+
+ 180 nle->events &= ~UV_READABLE;
+
+
+
+
+ 185 nle->events |= UV_WRITABLE;
+
+ 187 nle->events &= ~UV_WRITABLE;
+
+
+
+
+ 192 int res = uv_poll_start(nle->handle, nle->events, natsLibuvPoll);
+
+
+
+
+ 197 uv_close((uv_handle_t*) nle->handle, uvHandleClosedCb);
+
+
+
+
+
+
+
+
+
+
+ 208 uvAsyncAttach(natsLibuvEvents *nle)
+
+
+
+
+
+
+ 215 nle->handle = (uv_poll_t*) malloc(
sizeof(uv_poll_t));
+ 216 if (nle->handle == NULL)
+
+
+
+
+ 221 #if UV_VERSION_MAJOR <= 1
+ 222 if (uv_poll_init_socket(nle->loop, nle->handle, nle->socket) != 0)
+
+ 224 if (uv_poll_init(nle->loop, nle->handle, nle->socket) != 0)
+
+
+
+
+
+ 230 && (nle->handle->data = (
void*) nle)
+ 231 && (uv_poll_start(nle->handle, UV_READABLE, natsLibuvPoll) != 0))
+
+
+
+
+
+
+
+
+ 240 uvFinalCloseCb(uv_handle_t* handle)
+
+ 242 natsLibuvEvents *nle = (natsLibuvEvents*) handle->data;
+ 243 natsLibuvEvent *event;
+
+ 245 while ((event = nle->head) != NULL)
+
+ 247 nle->head =
event->next;
+
+
+ 250 free(nle->scheduler);
+ 251 uv_mutex_destroy(nle->lock);
+
+
+
+
+
+ 257 uvAsyncDetach(natsLibuvEvents *nle)
+
+ 259 uv_close((uv_handle_t*) nle->scheduler, uvFinalCloseCb);
+
+
+
+ 263 uvAsyncCb(uv_async_t *handle)
+
+ 265 natsLibuvEvents *nle = (natsLibuvEvents*) handle->data;
+
+ 267 natsLibuvEvent *event = NULL;
+
+
+
+
+ 272 uv_mutex_lock(nle->lock);
-
-
- 276 uv_mutex_lock(nle->lock);
-
-
-
-
-
-
- 283 uv_mutex_unlock(nle->lock);
-
-
+
+
+
+
+
+ 279 uv_mutex_unlock(nle->lock);
+
+
+
+ 283 nle->head =
event->next;
+ 284 if (event == nle->tail)
+
- 287 nle->head =
event->next;
- 288 if (event == nle->tail)
-
+ 287 more = (nle->head != NULL ? true :
false);
+
+ 289 uv_mutex_unlock(nle->lock);
- 291 more = (nle->head != NULL ? true :
false);
-
- 293 uv_mutex_unlock(nle->lock);
-
-
-
- 297 case NATS_LIBUV_ATTACH:
-
- 299 s = uvAsyncAttach(nle);
-
-
- 302 case NATS_LIBUV_READ:
- 303 case NATS_LIBUV_WRITE:
-
- 305 s = uvPollUpdate(nle, event->type, event->add);
-
-
- 308 case NATS_LIBUV_DETACH:
-
-
+
+
+ 293 case NATS_LIBUV_ATTACH:
+
+ 295 s = uvAsyncAttach(nle);
+
+
+ 298 case NATS_LIBUV_READ:
+ 299 case NATS_LIBUV_WRITE:
+
+ 301 s = uvPollUpdate(nle, event->type, event->add);
+
+
+ 304 case NATS_LIBUV_DETACH:
+
+
+
+
+
+
@@ -526,6 +526,7 @@
NATS_EXTERN void natsConnection_Close(natsConnection *nc)
Closes the connection.
+NATS_EXTERN void natsConnection_ProcessCloseEvent(natsSock *socket)
Process a socket close event when using external event loop.
NATS_EXTERN void natsConnection_ProcessReadEvent(natsConnection *nc)
Process a read event when using external event loop.
NATS_EXTERN void natsConnection_ProcessWriteEvent(natsConnection *nc)
Process a write event when using external event loop.
void natsLibuv_SetThreadLocalLoop(uv_loop_t *loop)
Register the event loop with the thread running uv_run().
Definition: libuv.h:104
diff --git a/doc/html/modules.html b/doc/html/modules.html
index 46a7e1cc6..1eede3ee4 100644
--- a/doc/html/modules.html
+++ b/doc/html/modules.html
@@ -26,7 +26,7 @@
NATS C Client with JetStream and Streaming support
- 3.9.0-beta
+ 3.10.0-beta
The nats.io C Client, Supported by Synadia Communications Inc.
|
@@ -809,1574 +809,1578 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1502 #if defined(NATS_HAS_STREAMING)
-
-
-
-
- 1519 typedef struct __stanMsg
stanMsg;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1669 char **customErrTxt,
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1503 #if defined(NATS_HAS_STREAMING)
+
+
+
+
+ 1520 typedef struct __stanMsg
stanMsg;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1670 char **customErrTxt,
+
-
- 1699 char **customErrTxt,
- 1700 unsigned char **signature,
- 1701 int *signatureLength,
-
-
-
- 1713 typedef const char* (*natsTokenHandler)(
void *closure);
-
+
+
+ 1700 char **customErrTxt,
+ 1701 unsigned char **signature,
+ 1702 int *signatureLength,
+
+
+
+ 1714 typedef const char* (*natsTokenHandler)(
void *closure);
-
-
-
-
- 1747 #ifdef BUILD_IN_DOXYGEN
-
-
-
-
-
- 1827 #if defined(NATS_HAS_STREAMING)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ 1748 #ifdef BUILD_IN_DOXYGEN
+
+
+
+
+
+ 1828 #if defined(NATS_HAS_STREAMING)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- 1928 #ifdef BUILD_IN_DOXYGEN
-
-
-
- 1946 #define nats_CheckCompatibility() nats_CheckCompatibilityImpl(NATS_VERSION_REQUIRED_NUMBER, \
- 1947 NATS_VERSION_NUMBER, \
- 1948 NATS_VERSION_STRING)
-
-
- 1951 nats_CheckCompatibilityImpl(uint32_t reqVerNumber, uint32_t verNumber,
const char *verString);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2101 unsigned char **signature,
- 2102 int *signatureLength);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2235 uint64_t *inMsgs, uint64_t *inBytes,
- 2236 uint64_t *outMsgs, uint64_t *outBytes,
- 2237 uint64_t *reconnects);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2526 const char *certsFileName,
- 2527 const char *keyFileName);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3224 const char *userOrChainedFile,
- 3225 const char *seedFile);
-
-
-
- 3241 const char *jwtAndSeedContent);
-
-
-
-
-
-
-
-
-
-
- 3299 const char *seedFile);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3400 #if defined(NATS_HAS_STREAMING)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ 1929 #ifdef BUILD_IN_DOXYGEN
+
+
+
+ 1947 #define nats_CheckCompatibility() nats_CheckCompatibilityImpl(NATS_VERSION_REQUIRED_NUMBER, \
+ 1948 NATS_VERSION_NUMBER, \
+ 1949 NATS_VERSION_STRING)
+
+
+ 1952 nats_CheckCompatibilityImpl(uint32_t reqVerNumber, uint32_t verNumber,
const char *verString);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2102 unsigned char **signature,
+ 2103 int *signatureLength);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2236 uint64_t *inMsgs, uint64_t *inBytes,
+ 2237 uint64_t *outMsgs, uint64_t *outBytes,
+ 2238 uint64_t *reconnects);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2527 const char *certsFileName,
+ 2528 const char *keyFileName);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3225 const char *userOrChainedFile,
+ 3226 const char *seedFile);
+
+
+
+ 3242 const char *jwtAndSeedContent);
+
+
+
+
+
+
+
+
+
+
+ 3300 const char *seedFile);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3401 #if defined(NATS_HAS_STREAMING)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3832 const char *data,
int dataLen);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4064 #if defined(NATS_HAS_STREAMING)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3833 const char *data,
int dataLen);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4065 #if defined(NATS_HAS_STREAMING)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
- 4496 const unsigned char *message,
int messageLen,
- 4497 unsigned char sig[64]);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4607 const void *data,
int dataLen);
-
-
-
-
-
-
-
-
+
+
+
+
+ 4511 const unsigned char *message,
int messageLen,
+ 4512 unsigned char sig[64]);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4622 const void *data,
int dataLen);
+
+
+
+
+
-
- 4654 const char *reply,
const void *data,
int dataLen);
-
-
-
- 4674 const char *reply,
const char *str);
-
-
-
- 4695 const void *data,
int dataLen, int64_t timeout);
-
-
-
- 4720 const char *subj,
const char *str,
-
-
-
-
- 4739 natsMsg *requestMsg, int64_t timeout);
-
-
-
-
-
-
-
-
-
- 4800 const char *subject, int64_t timeout,
-
-
+
+
+
+
+ 4669 const char *reply,
const void *data,
int dataLen);
+
+
+
+ 4689 const char *reply,
const char *str);
+
+
+
+ 4710 const void *data,
int dataLen, int64_t timeout);
+
+
+
+ 4735 const char *subj,
const char *str,
+
+
+
+
+ 4754 natsMsg *requestMsg, int64_t timeout);
+
+
+
+
+
+
+
-
- 4815 const char *subject);
-
-
-
- 4836 const char *subject,
const char *queueGroup,
-
-
-
-
- 4873 const char *subject,
const char *queueGroup,
-
-
-
-
- 4889 const char *subject,
const char *queueGroup);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ 4815 const char *subject, int64_t timeout,
+
+
+
+
+ 4830 const char *subject);
+
+
+
+ 4851 const char *subject,
const char *queueGroup,
+
+
+
+
+ 4888 const char *subject,
const char *queueGroup,
+
+
+
+
+ 4904 const char *subject,
const char *queueGroup);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
- 5148 int *maxPendingMsgs,
- 5149 int *maxPendingBytes,
- 5150 int64_t *deliveredMsgs,
- 5151 int64_t *droppedMsgs);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5333 #if defined(NATS_HAS_STREAMING)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5473 const void *data,
int dataLen);
-
-
-
- 5500 const void *data,
int dataLen,
-
-
-
-
-
-
-
-
-
-
- 5553 const char *channel,
const char *queueGroup,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 6108 const char *stream,
const char *consumer,
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ 5163 int *maxPendingMsgs,
+ 5164 int *maxPendingBytes,
+ 5165 int64_t *deliveredMsgs,
+ 5166 int64_t *droppedMsgs);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 5348 #if defined(NATS_HAS_STREAMING)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 5488 const void *data,
int dataLen);
+
+
+
+ 5515 const void *data,
int dataLen,
+
+
+
+
+
+
+
+
+
+
+ 5568 const char *channel,
const char *queueGroup,
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 6123 const char *stream,
const char *consumer,
+
-
-
- 6142 const char *stream,
const char *consumer,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 6157 const char *stream,
const char *consumer,
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
-
-
-
-
- 8103 #define MICRO_API_PREFIX "$SRV"
-
- 8108 #define MICRO_INFO_RESPONSE_TYPE "io.nats.micro.v1.info_response"
-
- 8113 #define MICRO_INFO_VERB "INFO"
-
- 8118 #define MICRO_PING_RESPONSE_TYPE "io.nats.micro.v1.ping_response"
+
+
+
+
+
+
+
+
+
+
+ 8118 #define MICRO_API_PREFIX "$SRV"
- 8123 #define MICRO_PING_VERB "PING"
+ 8123 #define MICRO_INFO_RESPONSE_TYPE "io.nats.micro.v1.info_response"
- 8128 #define MICRO_STATS_RESPONSE_TYPE "io.nats.micro.v1.stats_response"
+ 8128 #define MICRO_INFO_VERB "INFO"
- 8133 #define MICRO_STATS_VERB "STATS"
+ 8133 #define MICRO_PING_RESPONSE_TYPE "io.nats.micro.v1.ping_response"
- 8139 #define MICRO_STATUS_HDR "Nats-Status"
-
- 8145 #define MICRO_ERROR_HDR "Nats-Service-Error"
-
- 8151 #define MICRO_ERROR_CODE_HDR "Nats-Service-Error-Code"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 8138 #define MICRO_PING_VERB "PING"
+
+ 8143 #define MICRO_STATS_RESPONSE_TYPE "io.nats.micro.v1.stats_response"
+
+ 8148 #define MICRO_STATS_VERB "STATS"
+
+ 8154 #define MICRO_STATUS_HDR "Nats-Status"
+
+ 8160 #define MICRO_ERROR_HDR "Nats-Service-Error"
+
+ 8166 #define MICRO_ERROR_CODE_HDR "Nats-Service-Error-Code"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 8709 #define microError_Ignore(__err) microError_Destroy(__err)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-void(* natsOnCompleteCB)(void *closure)
Callback used to notify that an object lifecycle is complete.
Definition: nats.h:1723
-natsStatus(* natsEvLoop_Attach)(void **userData, void *loop, natsConnection *nc, natsSock socket)
Attach this connection to the external event loop.
Definition: nats.h:1604
-natsStatus(* natsUserJWTHandler)(char **userJWT, char **customErrTxt, void *closure)
Callback used to fetch and return account signed user JWT.
Definition: nats.h:1667
-natsStatus(* natsEvLoop_WriteAddRemove)(void *userData, bool add)
Write event needs to be added or removed.
Definition: nats.h:1632
-int64_t(* natsCustomReconnectDelayHandler)(natsConnection *nc, int attempts, void *closure)
Callback used to specify how long to wait between reconnects.
Definition: nats.h:1745
-void(* jsPubAckHandler)(jsCtx *js, natsMsg *msg, jsPubAck *pa, jsPubAckErr *pae, void *closure)
Callback used to process asynchronous publish responses from JetStream.
Definition: nats.h:1824
-const char *(* natsTokenHandler)(void *closure)
Callback used to build a token on connections and reconnections.
Definition: nats.h:1713
-void(* jsPubAckErrHandler)(jsCtx *js, jsPubAckErr *pae, void *closure)
Callback used to process asynchronous publish errors from JetStream.
Definition: nats.h:1781
-void(* natsErrHandler)(natsConnection *nc, natsSubscription *subscription, natsStatus err, void *closure)
Callback used to notify the user of errors encountered while processing inbound messages.
Definition: nats.h:1587
-natsStatus(* natsEvLoop_Detach)(void *userData)
Detach from the event loop.
Definition: nats.h:1643
-natsStatus(* natsSignatureHandler)(char **customErrTxt, unsigned char **signature, int *signatureLength, const char *nonce, void *closure)
Callback used to sign a nonce sent by the server.
Definition: nats.h:1698
-void(* stanConnectionLostHandler)(stanConnection *sc, const char *errorTxt, void *closure)
Callback used to notify the user of the permanent loss of the connection.
Definition: nats.h:1856
-void(* natsConnectionHandler)(natsConnection *nc, void *closure)
Callback used to notify the user of asynchronous connection events.
Definition: nats.h:1578
-void(* natsMsgHandler)(natsConnection *nc, natsSubscription *sub, natsMsg *msg, void *closure)
Callback used to deliver messages to the application.
Definition: nats.h:1562
-void(* stanPubAckHandler)(const char *guid, const char *error, void *closure)
Callback used to notify of an asynchronous publish result.
Definition: nats.h:1836
-natsStatus(* natsEvLoop_ReadAddRemove)(void *userData, bool add)
Read event needs to be added or removed.
Definition: nats.h:1619
-void(* stanMsgHandler)(stanConnection *sc, stanSubscription *sub, const char *channel, stanMsg *msg, void *closure)
Callback used to deliver messages to the application.
Definition: nats.h:1847
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8724 #define microError_Ignore(__err) microError_Destroy(__err)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+void(* natsOnCompleteCB)(void *closure)
Callback used to notify that an object lifecycle is complete.
Definition: nats.h:1724
+natsStatus(* natsEvLoop_Attach)(void **userData, void *loop, natsConnection *nc, natsSock socket)
Attach this connection to the external event loop.
Definition: nats.h:1605
+natsStatus(* natsUserJWTHandler)(char **userJWT, char **customErrTxt, void *closure)
Callback used to fetch and return account signed user JWT.
Definition: nats.h:1668
+natsStatus(* natsEvLoop_WriteAddRemove)(void *userData, bool add)
Write event needs to be added or removed.
Definition: nats.h:1633
+int64_t(* natsCustomReconnectDelayHandler)(natsConnection *nc, int attempts, void *closure)
Callback used to specify how long to wait between reconnects.
Definition: nats.h:1746
+void(* jsPubAckHandler)(jsCtx *js, natsMsg *msg, jsPubAck *pa, jsPubAckErr *pae, void *closure)
Callback used to process asynchronous publish responses from JetStream.
Definition: nats.h:1825
+const char *(* natsTokenHandler)(void *closure)
Callback used to build a token on connections and reconnections.
Definition: nats.h:1714
+void(* jsPubAckErrHandler)(jsCtx *js, jsPubAckErr *pae, void *closure)
Callback used to process asynchronous publish errors from JetStream.
Definition: nats.h:1782
+void(* natsErrHandler)(natsConnection *nc, natsSubscription *subscription, natsStatus err, void *closure)
Callback used to notify the user of errors encountered while processing inbound messages.
Definition: nats.h:1588
+natsStatus(* natsEvLoop_Detach)(void *userData)
Detach from the event loop.
Definition: nats.h:1644
+natsStatus(* natsSignatureHandler)(char **customErrTxt, unsigned char **signature, int *signatureLength, const char *nonce, void *closure)
Callback used to sign a nonce sent by the server.
Definition: nats.h:1699
+void(* stanConnectionLostHandler)(stanConnection *sc, const char *errorTxt, void *closure)
Callback used to notify the user of the permanent loss of the connection.
Definition: nats.h:1857
+void(* natsConnectionHandler)(natsConnection *nc, void *closure)
Callback used to notify the user of asynchronous connection events.
Definition: nats.h:1579
+void(* natsMsgHandler)(natsConnection *nc, natsSubscription *sub, natsMsg *msg, void *closure)
Callback used to deliver messages to the application.
Definition: nats.h:1563
+void(* stanPubAckHandler)(const char *guid, const char *error, void *closure)
Callback used to notify of an asynchronous publish result.
Definition: nats.h:1837
+natsStatus(* natsEvLoop_ReadAddRemove)(void *userData, bool add)
Read event needs to be added or removed.
Definition: nats.h:1620
+void(* stanMsgHandler)(stanConnection *sc, stanSubscription *sub, const char *channel, stanMsg *msg, void *closure)
Callback used to deliver messages to the application.
Definition: nats.h:1848
NATS_EXTERN int natsConnection_Buffered(natsConnection *nc)
Returns the number of bytes to be sent to the server.
NATS_EXTERN void natsConnection_Close(natsConnection *nc)
Closes the connection.
NATS_EXTERN natsStatus natsConnection_Flush(natsConnection *nc)
Flushes the connection.
@@ -2392,6 +2396,7 @@
NATS_EXTERN natsStatus natsConnection_Connect(natsConnection **nc, natsOptions *options)
Connects to a NATS Server using the provided options.
NATS_EXTERN natsStatus natsConnection_GetClientID(natsConnection *nc, uint64_t *cid)
Gets the current client ID assigned by the server.
NATS_EXTERN natsStatus natsConnection_FlushTimeout(natsConnection *nc, int64_t timeout)
Flushes the connection with a given timeout.
+NATS_EXTERN void natsConnection_ProcessCloseEvent(natsSock *socket)
Process a socket close event when using external event loop.
NATS_EXTERN natsStatus natsConnection_GetLocalIPAndPort(natsConnection *nc, char **ip, int *port)
Returns the connection local IP and port.
NATS_EXTERN natsStatus natsConnection_GetRTT(natsConnection *nc, int64_t *rtt)
Returns the round trip time between this client and the server.
NATS_EXTERN void natsConnection_ProcessReadEvent(natsConnection *nc)
Process a read event when using external event loop.
@@ -2554,9 +2559,9 @@
NATS_EXTERN natsStatus nats_Sign(const char *encodedSeed, const char *input, unsigned char **signature, int *signatureLength)
Signs a given text using the provided private key.
NATS_EXTERN const char * nats_GetVersion(void)
Returns the Library's version.
NATS_EXTERN void nats_ReleaseThreadMemory(void)
Release thread-local memory possibly allocated by the library.
-void(* microErrorHandler)(microService *m, microEndpoint *ep, natsStatus s)
Callback type for async error notifications.
Definition: nats.h:7745
-microError *(* microRequestHandler)(microRequest *req)
Callback type for request processing.
Definition: nats.h:7721
-void(* microDoneHandler)(microService *m)
Callback type for Done (service stopped) notifications.
Definition: nats.h:7758
+void(* microErrorHandler)(microService *m, microEndpoint *ep, natsStatus s)
Callback type for async error notifications.
Definition: nats.h:7760
+microError *(* microRequestHandler)(microRequest *req)
Callback type for request processing.
Definition: nats.h:7736
+void(* microDoneHandler)(microService *m)
Callback type for Done (service stopped) notifications.
Definition: nats.h:7773
NATS_EXTERN void microServiceInfo_Destroy(microServiceInfo *info)
Destroys a microServiceInfo object.
NATS_EXTERN void microServiceStats_Destroy(microServiceStats *stats)
Destroys a microServiceStats object.
NATS_EXTERN microError * micro_NewClient(microClient **new_client, natsConnection *nc, microClientConfig *cfg)
Creates a new microservice client.
@@ -2601,15 +2606,15 @@
NATS_EXTERN bool microService_IsStopped(microService *m)
Checks if the service is stopped.
NATS_EXTERN microError * microService_Destroy(microService *m)
Destroys a microservice, stopping it first if needed.
NATS_EXTERN microError * microService_GetStats(microServiceStats **new_stats, microService *m)
Returns run-time statistics for a microservice.
-struct micro_client_s microClient
The Microservice client.
Definition: nats.h:7568
-struct micro_group_s microGroup
a collection of endpoints and other groups, with a common prefix to their subjects and names.
Definition: nats.h:7637
-struct micro_request_s microRequest
a request received by a microservice endpoint.
Definition: nats.h:7652
-struct micro_error_s microError
the Microservice error object.
Definition: nats.h:7628
-struct __for_forward_compatibility_only microClientConfig
The Microservice configuration object. For forward compatibility only.
Definition: nats.h:7573
+struct micro_client_s microClient
The Microservice client.
Definition: nats.h:7583
+struct micro_group_s microGroup
a collection of endpoints and other groups, with a common prefix to their subjects and names.
Definition: nats.h:7652
+struct micro_request_s microRequest
a request received by a microservice endpoint.
Definition: nats.h:7667
+struct micro_error_s microError
the Microservice error object.
Definition: nats.h:7643
+struct __for_forward_compatibility_only microClientConfig
The Microservice configuration object. For forward compatibility only.
Definition: nats.h:7588
NATS_EXTERN microError * micro_ErrorInvalidArg
NATS_EXTERN microError * micro_ErrorOutOfMemory
-struct micro_endpoint_s microEndpoint
microEndpoint represents a microservice endpoint.
Definition: nats.h:7584
-struct micro_service_s microService
the main object for a configured microservice.
Definition: nats.h:7665
+struct micro_endpoint_s microEndpoint
microEndpoint represents a microservice endpoint.
Definition: nats.h:7599
+struct micro_service_s microService
the main object for a configured microservice.
Definition: nats.h:7680
NATS_EXTERN natsStatus natsMsg_Create(natsMsg **newMsg, const char *subj, const char *reply, const char *data, int dataLen)
Creates a natsMsg object.
NATS_EXTERN void natsMsgList_Destroy(natsMsgList *list)
Destroys this list of messages.
NATS_EXTERN int natsMsg_GetDataLength(const natsMsg *msg)
Returns the message length.
@@ -2749,13 +2754,13 @@
NATS_EXTERN natsStatus natsSubscription_Unsubscribe(natsSubscription *sub)
Unsubscribes.
NATS_EXTERN natsStatus natsSubscription_ClearMaxPending(natsSubscription *sub)
Clears the statistics regarding the maximum pending values.
struct kvEntryList kvEntryList
A list of KeyValue store entries.
-struct __stanSubOptions stanSubOptions
Way to configure a stanSubscription.
Definition: nats.h:1531
+struct __stanSubOptions stanSubOptions
Way to configure a stanSubscription.
Definition: nats.h:1532
struct jsConsumerConfig jsConsumerConfig
struct __kvStore kvStore
Definition: nats.h:1367
struct jsOptions jsOptions
jsStorageCompression
Definition: nats.h:326
jsDeliverPolicy
Definition: nats.h:335
-struct __stanConnOptions stanConnOptions
Way to configure a stanConnection.
Definition: nats.h:1525
+struct __stanConnOptions stanConnOptions
Way to configure a stanConnection.
Definition: nats.h:1526
jsStorageType
Definition: nats.h:316
struct jsStreamInfoList jsStreamInfoList
@@ -2766,7 +2771,7 @@
struct jsStreamConfig jsStreamConfig
struct jsSequenceInfo jsSequenceInfo
struct jsStreamState jsStreamState
-struct __stanMsg stanMsg
The Streaming message.
Definition: nats.h:1519
+struct __stanMsg stanMsg
The Streaming message.
Definition: nats.h:1520
struct jsConsumerInfo jsConsumerInfo
struct jsSequencePair jsSequencePair
struct natsMetadata natsMetadata
A type to represent user-provided metadata, a list of k=v pairs.
@@ -2786,7 +2791,7 @@
kvOperation
Definition: nats.h:1388
jsAckPolicy
Definition: nats.h:349
struct kvPurgeOptions kvPurgeOptions
-struct __stanConnection stanConnection
A connection to a NATS Streaming Server.
Definition: nats.h:1507
+struct __stanConnection stanConnection
A connection to a NATS Streaming Server.
Definition: nats.h:1508
void(* jsFetchCompleteHandler)(natsConnection *nc, natsSubscription *sub, natsStatus s, void *closure)
Callback used to indicate that the work of js_PullSubscribeAsync is done.
Definition: nats.h:1228
struct jsAccountLimits jsAccountLimits
struct __jsCtx jsCtx
Definition: nats.h:262
@@ -2811,7 +2816,7 @@
struct jsStreamConsumerLimits jsStreamConsumerLimits
struct jsPubAckErr jsPubAckErr
struct __natsMsg natsMsg
A structure holding a subject, optional reply and payload.
Definition: nats.h:172
-struct __stanSubscription stanSubscription
Interest on a given channel.
Definition: nats.h:1513
+struct __stanSubscription stanSubscription
Interest on a given channel.
Definition: nats.h:1514
struct jsStreamStateSubjects jsStreamStateSubjects
struct jsExternalStream jsExternalStream
struct jsFetchRequest jsFetchRequest
@@ -3170,76 +3175,77 @@
jsRePublish * RePublish
Definition: nats.h:1411
int SourcesLen
Definition: nats.h:1414
jsStreamSource ** Sources
Definition: nats.h:1413
-A list of KeyValue store entries.
Definition: nats.h:1472
-kvEntry ** Entries
Definition: nats.h:1473
-int Count
Definition: nats.h:1474
-A list of KeyValue store keys.
Definition: nats.h:1496
-int Count
Definition: nats.h:1498
-char ** Keys
Definition: nats.h:1497
-
-int64_t Timeout
Definition: nats.h:1440
-int64_t DeleteMarkersOlderThan
Definition: nats.h:1450
+A list of KeyValue store entries.
Definition: nats.h:1473
+kvEntry ** Entries
Definition: nats.h:1474
+int Count
Definition: nats.h:1475
+A list of KeyValue store keys.
Definition: nats.h:1497
+int Count
Definition: nats.h:1499
+char ** Keys
Definition: nats.h:1498
+
+int64_t Timeout
Definition: nats.h:1441
+int64_t DeleteMarkersOlderThan
Definition: nats.h:1451
bool IgnoreDeletes
Definition: nats.h:1425
bool IncludeHistory
Definition: nats.h:1426
int64_t Timeout
How long to wait (in milliseconds) for some operations to complete.
Definition: nats.h:1428
+bool UpdatesOnly
Only receive updates, no initial snapshot.
Definition: nats.h:1429
bool MetaOnly
Definition: nats.h:1427
-
-const char * Name
The name of the endpoint.
Definition: nats.h:7779
-microRequestHandler Handler
The request handler for the endpoint.
Definition: nats.h:7813
-const char * Subject
The NATS subject the endpoint will listen on.
Definition: nats.h:7790
-natsMetadata Metadata
Metadata for the endpoint, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:7808
-bool NoQueueGroup
Disables the use of a queue group for the service.
Definition: nats.h:7802
-const char * QueueGroup
Overrides the default queue group for the service.
Definition: nats.h:7796
-void * State
A user-provided pointer to store with the endpoint (state/closure).
Definition: nats.h:7819
-
-const char * Subject
The semantic version of the service.
Definition: nats.h:7835
-const char * Name
The name of the service.
Definition: nats.h:7830
-const char * QueueGroup
Endpoint's actual queue group (the default "q", or one explicitly set by the user),...
Definition: nats.h:7841
-natsMetadata Metadata
Metadata for the endpoint, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:7847
-
-const char * Subject
Definition: nats.h:7856
-int64_t NumRequests
The number of requests received by the endpoint.
Definition: nats.h:7867
-char LastErrorString[2048]
a copy of the last error message.
Definition: nats.h:7893
-int64_t ProcessingTimeSeconds
total request processing time (the seconds part).
Definition: nats.h:7878
-int64_t ProcessingTimeNanoseconds
total request processing time (the nanoseconds part).
Definition: nats.h:7883
-const char * QueueGroup
Endpoint's actual queue group (the default "q", or one explicitly set by the user),...
Definition: nats.h:7862
-int64_t NumErrors
The number of errors, service-level and internal, associated with the endpoint.
Definition: nats.h:7873
-int64_t AverageProcessingTimeNanoseconds
average request processing time, in ns.
Definition: nats.h:7888
-const char * Name
Definition: nats.h:7855
-The Microservice endpoint group configuration object.
Definition: nats.h:7900
-bool NoQueueGroup
Disables the use of a queue group for the service.
Definition: nats.h:7908
-const char * QueueGroup
Overrides the default queue group for the service.
Definition: nats.h:7905
-const char * Prefix
The subject prefix for the group.
Definition: nats.h:7902
-The Microservice top-level configuration object.
Definition: nats.h:7918
-const char * Description
The description of the service.
Definition: nats.h:7934
-void * State
A user-provided pointer to state data.
Definition: nats.h:7998
-const char * Version
The (semantic) version of the service.
Definition: nats.h:7929
-microErrorHandler ErrHandler
An error notification handler.
Definition: nats.h:7979
-natsMetadata Metadata
Immutable metadata for the service, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:7952
-bool NoQueueGroup
Disables the use of a queue group for the service.
Definition: nats.h:7946
-microRequestHandler StatsHandler
A custom stats handler.
Definition: nats.h:7970
-microDoneHandler DoneHandler
A callback handler for handling the final cleanup Done event, right before the service is destroyed.
Definition: nats.h:7989
-const char * QueueGroup
Overrides the default queue group for the service ("q").
Definition: nats.h:7940
-const char * Name
The name of the service.
Definition: nats.h:7924
-microEndpointConfig * Endpoint
The "main" (aka default) endpoint configuration.
Definition: nats.h:7961
-
-natsMetadata Metadata
Metadata for the service, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:8036
-const char * Name
The name of the service.
Definition: nats.h:8016
-const char * Version
The semantic version of the service.
Definition: nats.h:8021
-const char * Type
Response type. Always "io.nats.micro.v1.info_response".
Definition: nats.h:8011
-const char * Id
The ID of the service instance responding to the request.
Definition: nats.h:8031
-microEndpointInfo * Endpoints
Endpoints.
Definition: nats.h:8041
-const char * Description
The description of the service.
Definition: nats.h:8026
-int EndpointsLen
The number of endpoints in the Endpoints array.
Definition: nats.h:8046
-
-int64_t Started
The timestamp of when the service was started.
Definition: nats.h:8077
-int EndpointsLen
The number of endpoints in the endpoints array.
Definition: nats.h:8087
-microEndpointStats * Endpoints
The stats for each endpoint of the service.
Definition: nats.h:8082
-const char * Version
The semantic version of the service.
Definition: nats.h:8067
-const char * Name
The name of the service.
Definition: nats.h:8062
-const char * Type
Response type. Always "io.nats.micro.v1.stats_response".
Definition: nats.h:8057
-const char * Id
The ID of the service instance responding to the request.
Definition: nats.h:8072
+
+const char * Name
The name of the endpoint.
Definition: nats.h:7794
+microRequestHandler Handler
The request handler for the endpoint.
Definition: nats.h:7828
+const char * Subject
The NATS subject the endpoint will listen on.
Definition: nats.h:7805
+natsMetadata Metadata
Metadata for the endpoint, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:7823
+bool NoQueueGroup
Disables the use of a queue group for the service.
Definition: nats.h:7817
+const char * QueueGroup
Overrides the default queue group for the service.
Definition: nats.h:7811
+void * State
A user-provided pointer to store with the endpoint (state/closure).
Definition: nats.h:7834
+
+const char * Subject
The semantic version of the service.
Definition: nats.h:7850
+const char * Name
The name of the service.
Definition: nats.h:7845
+const char * QueueGroup
Endpoint's actual queue group (the default "q", or one explicitly set by the user),...
Definition: nats.h:7856
+natsMetadata Metadata
Metadata for the endpoint, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:7862
+
+const char * Subject
Definition: nats.h:7871
+int64_t NumRequests
The number of requests received by the endpoint.
Definition: nats.h:7882
+char LastErrorString[2048]
a copy of the last error message.
Definition: nats.h:7908
+int64_t ProcessingTimeSeconds
total request processing time (the seconds part).
Definition: nats.h:7893
+int64_t ProcessingTimeNanoseconds
total request processing time (the nanoseconds part).
Definition: nats.h:7898
+const char * QueueGroup
Endpoint's actual queue group (the default "q", or one explicitly set by the user),...
Definition: nats.h:7877
+int64_t NumErrors
The number of errors, service-level and internal, associated with the endpoint.
Definition: nats.h:7888
+int64_t AverageProcessingTimeNanoseconds
average request processing time, in ns.
Definition: nats.h:7903
+const char * Name
Definition: nats.h:7870
+The Microservice endpoint group configuration object.
Definition: nats.h:7915
+bool NoQueueGroup
Disables the use of a queue group for the service.
Definition: nats.h:7923
+const char * QueueGroup
Overrides the default queue group for the service.
Definition: nats.h:7920
+const char * Prefix
The subject prefix for the group.
Definition: nats.h:7917
+The Microservice top-level configuration object.
Definition: nats.h:7933
+const char * Description
The description of the service.
Definition: nats.h:7949
+void * State
A user-provided pointer to state data.
Definition: nats.h:8013
+const char * Version
The (semantic) version of the service.
Definition: nats.h:7944
+microErrorHandler ErrHandler
An error notification handler.
Definition: nats.h:7994
+natsMetadata Metadata
Immutable metadata for the service, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:7967
+bool NoQueueGroup
Disables the use of a queue group for the service.
Definition: nats.h:7961
+microRequestHandler StatsHandler
A custom stats handler.
Definition: nats.h:7985
+microDoneHandler DoneHandler
A callback handler for handling the final cleanup Done event, right before the service is destroyed.
Definition: nats.h:8004
+const char * QueueGroup
Overrides the default queue group for the service ("q").
Definition: nats.h:7955
+const char * Name
The name of the service.
Definition: nats.h:7939
+microEndpointConfig * Endpoint
The "main" (aka default) endpoint configuration.
Definition: nats.h:7976
+
+natsMetadata Metadata
Metadata for the service, a JSON-encoded user-provided object, e.g. {"key":"value"}
Definition: nats.h:8051
+const char * Name
The name of the service.
Definition: nats.h:8031
+const char * Version
The semantic version of the service.
Definition: nats.h:8036
+const char * Type
Response type. Always "io.nats.micro.v1.info_response".
Definition: nats.h:8026
+const char * Id
The ID of the service instance responding to the request.
Definition: nats.h:8046
+microEndpointInfo * Endpoints
Endpoints.
Definition: nats.h:8056
+const char * Description
The description of the service.
Definition: nats.h:8041
+int EndpointsLen
The number of endpoints in the Endpoints array.
Definition: nats.h:8061
+
+int64_t Started
The timestamp of when the service was started.
Definition: nats.h:8092
+int EndpointsLen
The number of endpoints in the endpoints array.
Definition: nats.h:8102
+microEndpointStats * Endpoints
The stats for each endpoint of the service.
Definition: nats.h:8097
+const char * Version
The semantic version of the service.
Definition: nats.h:8082
+const char * Name
The name of the service.
Definition: nats.h:8077
+const char * Type
Response type. Always "io.nats.micro.v1.stats_response".
Definition: nats.h:8072
+const char * Id
The ID of the service instance responding to the request.
Definition: nats.h:8087
diff --git a/doc/html/navtreedata.js b/doc/html/navtreedata.js
index 6e42e0ca2..f537552ab 100644
--- a/doc/html/navtreedata.js
+++ b/doc/html/navtreedata.js
@@ -59,12 +59,12 @@ var NAVTREE =
var NAVTREEINDEX =
[
"annotated.html",
-"group__js_assets_group.html#gabb1579300f501ba4611efce29d952b82",
-"group__micro_callbacks.html#ga95c185268f8eb44fa6ee16db4b33958e",
-"group__opts_group.html#ga7ca713c7532eff4d41a492e95b8822cf",
-"group__types_group.html#ga57cdc53b29a4fedb5a4140b6e64a4fab",
-"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70aa0ca5a2e539cec9d33f433f28f2780fe",
-"structjs_options_1_1js_options_stream_1_1js_options_stream_purge.html"
+"group__js_assets_group.html#ga9fe289ae172f83e53ca1b1b747744c1f",
+"group__micro_callbacks.html#ga7a40fbbb9b1102f0a7679f9dfcf6c0d6",
+"group__opts_group.html#ga77afd954ca548054631215e511468e60",
+"group__types_group.html#ga57a4b8c7109e2773878655722ce028aa",
+"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a9eef13e3281a879f36a30e246fb6021b",
+"structjs_options_1_1js_options_stream_1_1js_options_stream_info.html#a73f847afe18f56eaaf6788900270bef7"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js
index 2b75dbb48..b79a5e3e5 100644
--- a/doc/html/navtreeindex0.js
+++ b/doc/html/navtreeindex0.js
@@ -25,8 +25,8 @@ var NAVTREEINDEX0 =
"functions_t.html":[3,2,0,17],
"functions_u.html":[3,2,0,18],
"functions_v.html":[3,2,0,19],
-"functions_vars.html":[3,2,1],
"functions_vars.html":[3,2,1,0],
+"functions_vars.html":[3,2,1],
"functions_vars_b.html":[3,2,1,1],
"functions_vars_c.html":[3,2,1,2],
"functions_vars_d.html":[3,2,1,3],
@@ -53,8 +53,8 @@ var NAVTREEINDEX0 =
"globals_defs.html":[4,1,6],
"globals_enum.html":[4,1,4],
"globals_eval.html":[4,1,5],
-"globals_func.html":[4,1,1],
"globals_func.html":[4,1,1,0],
+"globals_func.html":[4,1,1],
"globals_func_k.html":[4,1,1,1],
"globals_func_m.html":[4,1,1,2],
"globals_func_n.html":[4,1,1,3],
@@ -102,94 +102,96 @@ var NAVTREEINDEX0 =
"group__callbacks_group.html#gaf7456e37fa14f1834d9048d3789e9409":[2,1,15],
"group__conn_group.html":[2,2,9],
"group__conn_mgt_group.html":[2,2,9,0],
-"group__conn_mgt_group.html#ga0433159e518540ff874c4026fe9cd0c5":[2,2,9,0,9],
-"group__conn_mgt_group.html#ga0433159e518540ff874c4026fe9cd0c5":[4,0,2,263],
-"group__conn_mgt_group.html#ga19e204d27a232e2d4334301fc002b2ed":[2,2,9,0,27],
-"group__conn_mgt_group.html#ga19e204d27a232e2d4334301fc002b2ed":[4,0,2,281],
-"group__conn_mgt_group.html#ga1c98f8d89bb8e20ea8621e860a90267f":[2,2,9,0,10],
-"group__conn_mgt_group.html#ga1c98f8d89bb8e20ea8621e860a90267f":[4,0,2,264],
-"group__conn_mgt_group.html#ga2c3a8b08304579fd426e63f1d241f32e":[2,2,9,0,7],
-"group__conn_mgt_group.html#ga2c3a8b08304579fd426e63f1d241f32e":[4,0,2,261],
-"group__conn_mgt_group.html#ga33fa209522e5e0226b5b7c7d720a3b98":[2,2,9,0,8],
-"group__conn_mgt_group.html#ga33fa209522e5e0226b5b7c7d720a3b98":[4,0,2,262],
-"group__conn_mgt_group.html#ga48cee9ea1cdc9fc2770de2f9f0fd1ccf":[2,2,9,0,15],
-"group__conn_mgt_group.html#ga48cee9ea1cdc9fc2770de2f9f0fd1ccf":[4,0,2,269],
-"group__conn_mgt_group.html#ga530f0f1c75c58a81aae1a59f15b46d9f":[2,2,9,0,5],
-"group__conn_mgt_group.html#ga530f0f1c75c58a81aae1a59f15b46d9f":[4,0,2,259],
-"group__conn_mgt_group.html#ga59bdc4ad9fea2053f5d3841f6b83f88b":[2,2,9,0,20],
-"group__conn_mgt_group.html#ga59bdc4ad9fea2053f5d3841f6b83f88b":[4,0,2,274],
-"group__conn_mgt_group.html#ga5aa349fc3895dde772671b324b07a688":[2,2,9,0,6],
-"group__conn_mgt_group.html#ga5aa349fc3895dde772671b324b07a688":[4,0,2,260],
-"group__conn_mgt_group.html#ga68821a8ae1176096b5afef7fdc7947ec":[2,2,9,0,13],
-"group__conn_mgt_group.html#ga68821a8ae1176096b5afef7fdc7947ec":[4,0,2,267],
-"group__conn_mgt_group.html#ga68e7149f7ff1cc4989b3f795fa7e76d9":[2,2,9,0,12],
-"group__conn_mgt_group.html#ga68e7149f7ff1cc4989b3f795fa7e76d9":[4,0,2,266],
-"group__conn_mgt_group.html#ga6960cfdbaac3b8759784f352d4c264f8":[2,2,9,0,22],
-"group__conn_mgt_group.html#ga6960cfdbaac3b8759784f352d4c264f8":[4,0,2,276],
+"group__conn_mgt_group.html#ga0433159e518540ff874c4026fe9cd0c5":[2,2,9,0,10],
+"group__conn_mgt_group.html#ga0433159e518540ff874c4026fe9cd0c5":[4,0,2,264],
+"group__conn_mgt_group.html#ga19e204d27a232e2d4334301fc002b2ed":[2,2,9,0,28],
+"group__conn_mgt_group.html#ga19e204d27a232e2d4334301fc002b2ed":[4,0,2,282],
+"group__conn_mgt_group.html#ga1c98f8d89bb8e20ea8621e860a90267f":[2,2,9,0,11],
+"group__conn_mgt_group.html#ga1c98f8d89bb8e20ea8621e860a90267f":[4,0,2,265],
+"group__conn_mgt_group.html#ga2c3a8b08304579fd426e63f1d241f32e":[2,2,9,0,8],
+"group__conn_mgt_group.html#ga2c3a8b08304579fd426e63f1d241f32e":[4,0,2,262],
+"group__conn_mgt_group.html#ga33fa209522e5e0226b5b7c7d720a3b98":[2,2,9,0,9],
+"group__conn_mgt_group.html#ga33fa209522e5e0226b5b7c7d720a3b98":[4,0,2,263],
+"group__conn_mgt_group.html#ga48cee9ea1cdc9fc2770de2f9f0fd1ccf":[2,2,9,0,16],
+"group__conn_mgt_group.html#ga48cee9ea1cdc9fc2770de2f9f0fd1ccf":[4,0,2,270],
+"group__conn_mgt_group.html#ga530f0f1c75c58a81aae1a59f15b46d9f":[2,2,9,0,6],
+"group__conn_mgt_group.html#ga530f0f1c75c58a81aae1a59f15b46d9f":[4,0,2,260],
+"group__conn_mgt_group.html#ga59bdc4ad9fea2053f5d3841f6b83f88b":[2,2,9,0,21],
+"group__conn_mgt_group.html#ga59bdc4ad9fea2053f5d3841f6b83f88b":[4,0,2,275],
+"group__conn_mgt_group.html#ga5aa349fc3895dde772671b324b07a688":[2,2,9,0,7],
+"group__conn_mgt_group.html#ga5aa349fc3895dde772671b324b07a688":[4,0,2,261],
+"group__conn_mgt_group.html#ga68821a8ae1176096b5afef7fdc7947ec":[2,2,9,0,14],
+"group__conn_mgt_group.html#ga68821a8ae1176096b5afef7fdc7947ec":[4,0,2,268],
+"group__conn_mgt_group.html#ga68e7149f7ff1cc4989b3f795fa7e76d9":[2,2,9,0,13],
+"group__conn_mgt_group.html#ga68e7149f7ff1cc4989b3f795fa7e76d9":[4,0,2,267],
+"group__conn_mgt_group.html#ga6960cfdbaac3b8759784f352d4c264f8":[2,2,9,0,23],
+"group__conn_mgt_group.html#ga6960cfdbaac3b8759784f352d4c264f8":[4,0,2,277],
"group__conn_mgt_group.html#ga740be1ba16a8570eb98ef6755ebf52ce":[2,2,9,0,0],
"group__conn_mgt_group.html#ga740be1ba16a8570eb98ef6755ebf52ce":[4,0,2,254],
-"group__conn_mgt_group.html#ga747513ba6ab63fdf9a72bfc8025a14ba":[2,2,9,0,19],
-"group__conn_mgt_group.html#ga747513ba6ab63fdf9a72bfc8025a14ba":[4,0,2,273],
-"group__conn_mgt_group.html#ga85915ef0c8b87993be1b076099d6a7c1":[2,2,9,0,11],
-"group__conn_mgt_group.html#ga85915ef0c8b87993be1b076099d6a7c1":[4,0,2,265],
-"group__conn_mgt_group.html#gaa079d4712912ed8e484fa8a60fe71bcb":[2,2,9,0,26],
-"group__conn_mgt_group.html#gaa079d4712912ed8e484fa8a60fe71bcb":[4,0,2,280],
-"group__conn_mgt_group.html#gaa3fd27e6e7d8131e679d4f10e201c435":[2,2,9,0,24],
-"group__conn_mgt_group.html#gaa3fd27e6e7d8131e679d4f10e201c435":[4,0,2,278],
+"group__conn_mgt_group.html#ga747513ba6ab63fdf9a72bfc8025a14ba":[2,2,9,0,20],
+"group__conn_mgt_group.html#ga747513ba6ab63fdf9a72bfc8025a14ba":[4,0,2,274],
+"group__conn_mgt_group.html#ga85915ef0c8b87993be1b076099d6a7c1":[2,2,9,0,12],
+"group__conn_mgt_group.html#ga85915ef0c8b87993be1b076099d6a7c1":[4,0,2,266],
+"group__conn_mgt_group.html#ga9b0b13505d2dc85f49a5554c8a164876":[2,2,9,0,3],
+"group__conn_mgt_group.html#ga9b0b13505d2dc85f49a5554c8a164876":[4,0,2,257],
+"group__conn_mgt_group.html#gaa079d4712912ed8e484fa8a60fe71bcb":[2,2,9,0,27],
+"group__conn_mgt_group.html#gaa079d4712912ed8e484fa8a60fe71bcb":[4,0,2,281],
+"group__conn_mgt_group.html#gaa3fd27e6e7d8131e679d4f10e201c435":[2,2,9,0,25],
+"group__conn_mgt_group.html#gaa3fd27e6e7d8131e679d4f10e201c435":[4,0,2,279],
"group__conn_mgt_group.html#gaa89c06e30e19ff361125bfc9114d89a8":[2,2,9,0,2],
"group__conn_mgt_group.html#gaa89c06e30e19ff361125bfc9114d89a8":[4,0,2,256],
"group__conn_mgt_group.html#gab189a6974024f58944cdaa5612d4587e":[2,2,9,0,1],
"group__conn_mgt_group.html#gab189a6974024f58944cdaa5612d4587e":[4,0,2,255],
-"group__conn_mgt_group.html#gab6cfa9cb6857ae10f096a94f5e244e63":[2,2,9,0,18],
-"group__conn_mgt_group.html#gab6cfa9cb6857ae10f096a94f5e244e63":[4,0,2,272],
-"group__conn_mgt_group.html#gad25c77be0873495412c90a73fe450708":[2,2,9,0,17],
-"group__conn_mgt_group.html#gad25c77be0873495412c90a73fe450708":[4,0,2,271],
-"group__conn_mgt_group.html#gad765b80ae8e1a06a7a942cccf29f042a":[2,2,9,0,25],
-"group__conn_mgt_group.html#gad765b80ae8e1a06a7a942cccf29f042a":[4,0,2,279],
-"group__conn_mgt_group.html#gad81b603b84c0180aefc6d5ebad7f2a47":[2,2,9,0,3],
-"group__conn_mgt_group.html#gad81b603b84c0180aefc6d5ebad7f2a47":[4,0,2,257],
-"group__conn_mgt_group.html#gadafcfeeeac2733c7119981ab97b7103d":[2,2,9,0,23],
-"group__conn_mgt_group.html#gadafcfeeeac2733c7119981ab97b7103d":[4,0,2,277],
-"group__conn_mgt_group.html#gae06fe6f5933f216d6d93645a122a7dd4":[2,2,9,0,21],
-"group__conn_mgt_group.html#gae06fe6f5933f216d6d93645a122a7dd4":[4,0,2,275],
-"group__conn_mgt_group.html#gaf4ee7262e35e44c40ad5dfe9240db76b":[2,2,9,0,16],
-"group__conn_mgt_group.html#gaf4ee7262e35e44c40ad5dfe9240db76b":[4,0,2,270],
-"group__conn_mgt_group.html#gaf623280407c43ade02285005f0642e6d":[2,2,9,0,14],
-"group__conn_mgt_group.html#gaf623280407c43ade02285005f0642e6d":[4,0,2,268],
-"group__conn_mgt_group.html#gafb83c8d7970ba68be0e6c40c38cdfde4":[2,2,9,0,4],
-"group__conn_mgt_group.html#gafb83c8d7970ba68be0e6c40c38cdfde4":[4,0,2,258],
-"group__conn_mgt_group.html#gafda2f702276fb0ac301efac10df09495":[2,2,9,0,28],
-"group__conn_mgt_group.html#gafda2f702276fb0ac301efac10df09495":[4,0,2,282],
+"group__conn_mgt_group.html#gab6cfa9cb6857ae10f096a94f5e244e63":[2,2,9,0,19],
+"group__conn_mgt_group.html#gab6cfa9cb6857ae10f096a94f5e244e63":[4,0,2,273],
+"group__conn_mgt_group.html#gad25c77be0873495412c90a73fe450708":[2,2,9,0,18],
+"group__conn_mgt_group.html#gad25c77be0873495412c90a73fe450708":[4,0,2,272],
+"group__conn_mgt_group.html#gad765b80ae8e1a06a7a942cccf29f042a":[2,2,9,0,26],
+"group__conn_mgt_group.html#gad765b80ae8e1a06a7a942cccf29f042a":[4,0,2,280],
+"group__conn_mgt_group.html#gad81b603b84c0180aefc6d5ebad7f2a47":[2,2,9,0,4],
+"group__conn_mgt_group.html#gad81b603b84c0180aefc6d5ebad7f2a47":[4,0,2,258],
+"group__conn_mgt_group.html#gadafcfeeeac2733c7119981ab97b7103d":[2,2,9,0,24],
+"group__conn_mgt_group.html#gadafcfeeeac2733c7119981ab97b7103d":[4,0,2,278],
+"group__conn_mgt_group.html#gae06fe6f5933f216d6d93645a122a7dd4":[2,2,9,0,22],
+"group__conn_mgt_group.html#gae06fe6f5933f216d6d93645a122a7dd4":[4,0,2,276],
+"group__conn_mgt_group.html#gaf4ee7262e35e44c40ad5dfe9240db76b":[2,2,9,0,17],
+"group__conn_mgt_group.html#gaf4ee7262e35e44c40ad5dfe9240db76b":[4,0,2,271],
+"group__conn_mgt_group.html#gaf623280407c43ade02285005f0642e6d":[2,2,9,0,15],
+"group__conn_mgt_group.html#gaf623280407c43ade02285005f0642e6d":[4,0,2,269],
+"group__conn_mgt_group.html#gafb83c8d7970ba68be0e6c40c38cdfde4":[2,2,9,0,5],
+"group__conn_mgt_group.html#gafb83c8d7970ba68be0e6c40c38cdfde4":[4,0,2,259],
+"group__conn_mgt_group.html#gafda2f702276fb0ac301efac10df09495":[2,2,9,0,29],
+"group__conn_mgt_group.html#gafda2f702276fb0ac301efac10df09495":[4,0,2,283],
"group__conn_pub_group.html":[2,2,9,1],
"group__conn_pub_group.html#ga052de4b75b3b69ccd8d20eb4861b801d":[2,2,9,1,7],
-"group__conn_pub_group.html#ga052de4b75b3b69ccd8d20eb4861b801d":[4,0,2,290],
+"group__conn_pub_group.html#ga052de4b75b3b69ccd8d20eb4861b801d":[4,0,2,291],
"group__conn_pub_group.html#ga4bb5105df6a3efd2088e6be0fdf6b31f":[2,2,9,1,6],
-"group__conn_pub_group.html#ga4bb5105df6a3efd2088e6be0fdf6b31f":[4,0,2,289],
+"group__conn_pub_group.html#ga4bb5105df6a3efd2088e6be0fdf6b31f":[4,0,2,290],
"group__conn_pub_group.html#ga74511acd87385931112c45c48c2a14ba":[2,2,9,1,2],
-"group__conn_pub_group.html#ga74511acd87385931112c45c48c2a14ba":[4,0,2,285],
+"group__conn_pub_group.html#ga74511acd87385931112c45c48c2a14ba":[4,0,2,286],
"group__conn_pub_group.html#gaaaa3d75ffec2dcdc6bf905cdb1eee59e":[2,2,9,1,3],
-"group__conn_pub_group.html#gaaaa3d75ffec2dcdc6bf905cdb1eee59e":[4,0,2,286],
+"group__conn_pub_group.html#gaaaa3d75ffec2dcdc6bf905cdb1eee59e":[4,0,2,287],
"group__conn_pub_group.html#gaafca9a8294e81a5a9979e762931e56c5":[2,2,9,1,4],
-"group__conn_pub_group.html#gaafca9a8294e81a5a9979e762931e56c5":[4,0,2,287],
+"group__conn_pub_group.html#gaafca9a8294e81a5a9979e762931e56c5":[4,0,2,288],
"group__conn_pub_group.html#gac0b9f7759ecc39b8d77807b94254f9b4":[2,2,9,1,0],
-"group__conn_pub_group.html#gac0b9f7759ecc39b8d77807b94254f9b4":[4,0,2,283],
+"group__conn_pub_group.html#gac0b9f7759ecc39b8d77807b94254f9b4":[4,0,2,284],
"group__conn_pub_group.html#gad09a717c20de4cf0e2a21dcfd9ce6c64":[2,2,9,1,1],
-"group__conn_pub_group.html#gad09a717c20de4cf0e2a21dcfd9ce6c64":[4,0,2,284],
+"group__conn_pub_group.html#gad09a717c20de4cf0e2a21dcfd9ce6c64":[4,0,2,285],
"group__conn_pub_group.html#gaf4b4a022f9c21fc269b87c000330c5a7":[2,2,9,1,5],
-"group__conn_pub_group.html#gaf4b4a022f9c21fc269b87c000330c5a7":[4,0,2,288],
+"group__conn_pub_group.html#gaf4b4a022f9c21fc269b87c000330c5a7":[4,0,2,289],
"group__conn_sub_group.html":[2,2,9,2],
"group__conn_sub_group.html#ga17574d5165f7e285462e3d3b2709edf4":[2,2,9,2,2],
-"group__conn_sub_group.html#ga17574d5165f7e285462e3d3b2709edf4":[4,0,2,293],
+"group__conn_sub_group.html#ga17574d5165f7e285462e3d3b2709edf4":[4,0,2,294],
"group__conn_sub_group.html#ga3c9fee2775130786ef62f1cbeb191a48":[2,2,9,2,3],
-"group__conn_sub_group.html#ga3c9fee2775130786ef62f1cbeb191a48":[4,0,2,294],
+"group__conn_sub_group.html#ga3c9fee2775130786ef62f1cbeb191a48":[4,0,2,295],
"group__conn_sub_group.html#ga68630ea7c4bbdc7f8cd62058b41fb476":[2,2,9,2,5],
-"group__conn_sub_group.html#ga68630ea7c4bbdc7f8cd62058b41fb476":[4,0,2,296],
+"group__conn_sub_group.html#ga68630ea7c4bbdc7f8cd62058b41fb476":[4,0,2,297],
"group__conn_sub_group.html#ga96fa115fd5b2ef7658884da80714b91c":[2,2,9,2,4],
-"group__conn_sub_group.html#ga96fa115fd5b2ef7658884da80714b91c":[4,0,2,295],
+"group__conn_sub_group.html#ga96fa115fd5b2ef7658884da80714b91c":[4,0,2,296],
"group__conn_sub_group.html#gacb2c83b58b7909715424cbc327fdd404":[2,2,9,2,1],
-"group__conn_sub_group.html#gacb2c83b58b7909715424cbc327fdd404":[4,0,2,292],
+"group__conn_sub_group.html#gacb2c83b58b7909715424cbc327fdd404":[4,0,2,293],
"group__conn_sub_group.html#gaefab965b5645798d47f9244f2b3fe3fb":[2,2,9,2,0],
-"group__conn_sub_group.html#gaefab965b5645798d47f9244f2b3fe3fb":[4,0,2,291],
+"group__conn_sub_group.html#gaefab965b5645798d47f9244f2b3fe3fb":[4,0,2,292],
"group__env_variables_group.html":[2,5],
"group__func_group.html":[2,2],
"group__inbox_group.html":[2,2,6],
@@ -199,55 +201,53 @@ var NAVTREEINDEX0 =
"group__inbox_group.html#gabd6444fb8f28afb9c2b6645945f46cfe":[4,0,2,233],
"group__js_assets_group.html":[2,2,13,0],
"group__js_assets_group.html#ga223691e6831072a0b8f8103a778293b0":[2,2,13,0,1],
-"group__js_assets_group.html#ga223691e6831072a0b8f8103a778293b0":[4,0,2,337],
+"group__js_assets_group.html#ga223691e6831072a0b8f8103a778293b0":[4,0,2,338],
"group__js_assets_group.html#ga2ced0d190131460bf4608ab893dffc50":[2,2,13,0,32],
-"group__js_assets_group.html#ga2ced0d190131460bf4608ab893dffc50":[4,0,2,368],
+"group__js_assets_group.html#ga2ced0d190131460bf4608ab893dffc50":[4,0,2,369],
"group__js_assets_group.html#ga2dda04757b4ab27a794b64f8d727fe23":[2,2,13,0,24],
-"group__js_assets_group.html#ga2dda04757b4ab27a794b64f8d727fe23":[4,0,2,360],
-"group__js_assets_group.html#ga3381bb05c05bf4a8979adde68d37dd66":[4,0,2,357],
+"group__js_assets_group.html#ga2dda04757b4ab27a794b64f8d727fe23":[4,0,2,361],
+"group__js_assets_group.html#ga3381bb05c05bf4a8979adde68d37dd66":[4,0,2,358],
"group__js_assets_group.html#ga3381bb05c05bf4a8979adde68d37dd66":[2,2,13,0,21],
"group__js_assets_group.html#ga388bfeaa5a78ebf6ce7c15c6e3a7156b":[2,2,13,0,4],
-"group__js_assets_group.html#ga388bfeaa5a78ebf6ce7c15c6e3a7156b":[4,0,2,340],
-"group__js_assets_group.html#ga38cdcc339eb8976d23296b99aa37d629":[4,0,2,354],
+"group__js_assets_group.html#ga388bfeaa5a78ebf6ce7c15c6e3a7156b":[4,0,2,341],
+"group__js_assets_group.html#ga38cdcc339eb8976d23296b99aa37d629":[4,0,2,355],
"group__js_assets_group.html#ga38cdcc339eb8976d23296b99aa37d629":[2,2,13,0,18],
"group__js_assets_group.html#ga397e55a0b3b6d36c9bf746eee3842172":[2,2,13,0,8],
-"group__js_assets_group.html#ga397e55a0b3b6d36c9bf746eee3842172":[4,0,2,344],
-"group__js_assets_group.html#ga421de40d8e91658353111c3f2ea90ec8":[4,0,2,366],
+"group__js_assets_group.html#ga397e55a0b3b6d36c9bf746eee3842172":[4,0,2,345],
+"group__js_assets_group.html#ga421de40d8e91658353111c3f2ea90ec8":[4,0,2,367],
"group__js_assets_group.html#ga421de40d8e91658353111c3f2ea90ec8":[2,2,13,0,30],
+"group__js_assets_group.html#ga52fbc61759b11494db91f348a733c490":[4,0,2,362],
"group__js_assets_group.html#ga52fbc61759b11494db91f348a733c490":[2,2,13,0,25],
-"group__js_assets_group.html#ga52fbc61759b11494db91f348a733c490":[4,0,2,361],
+"group__js_assets_group.html#ga531d91de372f0dffb8d64abecf88b0c0":[4,0,2,354],
"group__js_assets_group.html#ga531d91de372f0dffb8d64abecf88b0c0":[2,2,13,0,17],
-"group__js_assets_group.html#ga531d91de372f0dffb8d64abecf88b0c0":[4,0,2,353],
"group__js_assets_group.html#ga5a6a886c18a79caa403908bf7f7ef125":[2,2,13,0,7],
-"group__js_assets_group.html#ga5a6a886c18a79caa403908bf7f7ef125":[4,0,2,343],
+"group__js_assets_group.html#ga5a6a886c18a79caa403908bf7f7ef125":[4,0,2,344],
"group__js_assets_group.html#ga5efc5136d33ba52161e6732f88f1ee75":[2,2,13,0,5],
-"group__js_assets_group.html#ga5efc5136d33ba52161e6732f88f1ee75":[4,0,2,341],
-"group__js_assets_group.html#ga62c250cecc650b1eed0fa1691893e2ae":[4,0,2,348],
+"group__js_assets_group.html#ga5efc5136d33ba52161e6732f88f1ee75":[4,0,2,342],
+"group__js_assets_group.html#ga62c250cecc650b1eed0fa1691893e2ae":[4,0,2,349],
"group__js_assets_group.html#ga62c250cecc650b1eed0fa1691893e2ae":[2,2,13,0,12],
"group__js_assets_group.html#ga6835b53da27d5721eddb3698e582cf0c":[2,2,13,0,10],
-"group__js_assets_group.html#ga6835b53da27d5721eddb3698e582cf0c":[4,0,2,346],
-"group__js_assets_group.html#ga690d19af55d12b82c8523d1861cef8d0":[4,0,2,367],
+"group__js_assets_group.html#ga6835b53da27d5721eddb3698e582cf0c":[4,0,2,347],
+"group__js_assets_group.html#ga690d19af55d12b82c8523d1861cef8d0":[4,0,2,368],
"group__js_assets_group.html#ga690d19af55d12b82c8523d1861cef8d0":[2,2,13,0,31],
-"group__js_assets_group.html#ga7158f73e183462e9a15e9802e1746ff0":[4,0,2,350],
+"group__js_assets_group.html#ga7158f73e183462e9a15e9802e1746ff0":[4,0,2,351],
"group__js_assets_group.html#ga7158f73e183462e9a15e9802e1746ff0":[2,2,13,0,14],
"group__js_assets_group.html#ga75a5c44304e24481c67e17fbccc15c31":[2,2,13,0,6],
-"group__js_assets_group.html#ga75a5c44304e24481c67e17fbccc15c31":[4,0,2,342],
-"group__js_assets_group.html#ga7a3c0d2b1c98a4696e39d3c1ce111a25":[4,0,2,363],
+"group__js_assets_group.html#ga75a5c44304e24481c67e17fbccc15c31":[4,0,2,343],
+"group__js_assets_group.html#ga7a3c0d2b1c98a4696e39d3c1ce111a25":[4,0,2,364],
"group__js_assets_group.html#ga7a3c0d2b1c98a4696e39d3c1ce111a25":[2,2,13,0,27],
-"group__js_assets_group.html#ga7c8664b38fcce8497746367d35e5f60b":[4,0,2,370],
+"group__js_assets_group.html#ga7c8664b38fcce8497746367d35e5f60b":[4,0,2,371],
"group__js_assets_group.html#ga7c8664b38fcce8497746367d35e5f60b":[2,2,13,0,34],
"group__js_assets_group.html#ga7fe8e0bf98a38eb59372e7cd78aaaf56":[2,2,13,0,2],
-"group__js_assets_group.html#ga7fe8e0bf98a38eb59372e7cd78aaaf56":[4,0,2,338],
+"group__js_assets_group.html#ga7fe8e0bf98a38eb59372e7cd78aaaf56":[4,0,2,339],
"group__js_assets_group.html#ga81aebebcd79922104720da51e95020d4":[2,2,13,0,3],
-"group__js_assets_group.html#ga81aebebcd79922104720da51e95020d4":[4,0,2,339],
+"group__js_assets_group.html#ga81aebebcd79922104720da51e95020d4":[4,0,2,340],
"group__js_assets_group.html#ga8d835d47aed9c84ce3b8dcfea469f4cb":[2,2,13,0,11],
-"group__js_assets_group.html#ga8d835d47aed9c84ce3b8dcfea469f4cb":[4,0,2,347],
-"group__js_assets_group.html#ga8ee87ef86e94be42685941abe9638bbd":[4,0,2,352],
+"group__js_assets_group.html#ga8d835d47aed9c84ce3b8dcfea469f4cb":[4,0,2,348],
+"group__js_assets_group.html#ga8ee87ef86e94be42685941abe9638bbd":[4,0,2,353],
"group__js_assets_group.html#ga8ee87ef86e94be42685941abe9638bbd":[2,2,13,0,16],
+"group__js_assets_group.html#ga94cb23a35516b7779de28fcbb263180a":[4,0,2,352],
"group__js_assets_group.html#ga94cb23a35516b7779de28fcbb263180a":[2,2,13,0,15],
-"group__js_assets_group.html#ga94cb23a35516b7779de28fcbb263180a":[4,0,2,351],
-"group__js_assets_group.html#ga9c1d5ed2f24ba836c10e415231f80088":[4,0,2,364],
-"group__js_assets_group.html#ga9c1d5ed2f24ba836c10e415231f80088":[2,2,13,0,28],
-"group__js_assets_group.html#ga9fe289ae172f83e53ca1b1b747744c1f":[2,2,13,0,9],
-"group__js_assets_group.html#ga9fe289ae172f83e53ca1b1b747744c1f":[4,0,2,345]
+"group__js_assets_group.html#ga9c1d5ed2f24ba836c10e415231f80088":[4,0,2,365],
+"group__js_assets_group.html#ga9c1d5ed2f24ba836c10e415231f80088":[2,2,13,0,28]
};
diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js
index ff7173ae6..b90063c0b 100644
--- a/doc/html/navtreeindex1.js
+++ b/doc/html/navtreeindex1.js
@@ -1,193 +1,195 @@
var NAVTREEINDEX1 =
{
-"group__js_assets_group.html#gabb1579300f501ba4611efce29d952b82":[4,0,2,362],
+"group__js_assets_group.html#ga9fe289ae172f83e53ca1b1b747744c1f":[4,0,2,346],
+"group__js_assets_group.html#ga9fe289ae172f83e53ca1b1b747744c1f":[2,2,13,0,9],
+"group__js_assets_group.html#gabb1579300f501ba4611efce29d952b82":[4,0,2,363],
"group__js_assets_group.html#gabb1579300f501ba4611efce29d952b82":[2,2,13,0,26],
"group__js_assets_group.html#gac230f71dbdc4d10bc7471d01763881d6":[2,2,13,0,0],
-"group__js_assets_group.html#gac230f71dbdc4d10bc7471d01763881d6":[4,0,2,336],
-"group__js_assets_group.html#gac3dfc87863dbbb3c959ecde4bce905bc":[4,0,2,355],
+"group__js_assets_group.html#gac230f71dbdc4d10bc7471d01763881d6":[4,0,2,337],
+"group__js_assets_group.html#gac3dfc87863dbbb3c959ecde4bce905bc":[4,0,2,356],
"group__js_assets_group.html#gac3dfc87863dbbb3c959ecde4bce905bc":[2,2,13,0,19],
-"group__js_assets_group.html#gac8965dcfc6b465fbc323aa552c606c46":[4,0,2,369],
+"group__js_assets_group.html#gac8965dcfc6b465fbc323aa552c606c46":[4,0,2,370],
"group__js_assets_group.html#gac8965dcfc6b465fbc323aa552c606c46":[2,2,13,0,33],
-"group__js_assets_group.html#gad13ec256e24710bb237995814871e554":[4,0,2,359],
+"group__js_assets_group.html#gad13ec256e24710bb237995814871e554":[4,0,2,360],
"group__js_assets_group.html#gad13ec256e24710bb237995814871e554":[2,2,13,0,23],
"group__js_assets_group.html#gaeba5d45abbe811c0e40830c5f26c78fd":[2,2,13,0,13],
-"group__js_assets_group.html#gaeba5d45abbe811c0e40830c5f26c78fd":[4,0,2,349],
-"group__js_assets_group.html#gaf28097ede3e9ba9926fb00856e63ffd9":[4,0,2,365],
+"group__js_assets_group.html#gaeba5d45abbe811c0e40830c5f26c78fd":[4,0,2,350],
+"group__js_assets_group.html#gaf28097ede3e9ba9926fb00856e63ffd9":[4,0,2,366],
"group__js_assets_group.html#gaf28097ede3e9ba9926fb00856e63ffd9":[2,2,13,0,29],
-"group__js_assets_group.html#gaf2efb63db150e782d9007090b49d4115":[4,0,2,358],
+"group__js_assets_group.html#gaf2efb63db150e782d9007090b49d4115":[4,0,2,359],
"group__js_assets_group.html#gaf2efb63db150e782d9007090b49d4115":[2,2,13,0,22],
-"group__js_assets_group.html#gaf8644f281d4e24893a6a170b4f7faa65":[4,0,2,356],
+"group__js_assets_group.html#gaf8644f281d4e24893a6a170b4f7faa65":[4,0,2,357],
"group__js_assets_group.html#gaf8644f281d4e24893a6a170b4f7faa65":[2,2,13,0,20],
"group__js_group.html":[2,2,13],
-"group__js_group.html#ga855ff9a04888d696785cc5ede96112e4":[4,0,2,333],
+"group__js_group.html#ga855ff9a04888d696785cc5ede96112e4":[4,0,2,334],
"group__js_group.html#ga855ff9a04888d696785cc5ede96112e4":[2,2,13,4],
-"group__js_group.html#ga8ed08b0fe1074b1e490291f0af2cb03f":[4,0,2,334],
+"group__js_group.html#ga8ed08b0fe1074b1e490291f0af2cb03f":[4,0,2,335],
"group__js_group.html#ga8ed08b0fe1074b1e490291f0af2cb03f":[2,2,13,5],
-"group__js_group.html#gacfa6ce3e60ea540e3331a09a7f3dc856":[4,0,2,335],
+"group__js_group.html#gacfa6ce3e60ea540e3331a09a7f3dc856":[4,0,2,336],
"group__js_group.html#gacfa6ce3e60ea540e3331a09a7f3dc856":[2,2,13,6],
"group__js_msg.html":[2,2,13,3],
-"group__js_msg.html#ga819be2990ec20b964aa574b5331d7f2e":[4,0,2,399],
+"group__js_msg.html#ga819be2990ec20b964aa574b5331d7f2e":[4,0,2,400],
"group__js_msg.html#ga819be2990ec20b964aa574b5331d7f2e":[2,2,13,3,8],
-"group__js_msg.html#gab4850497c5481f5ec6eb1fcdb43646f5":[4,0,2,400],
+"group__js_msg.html#gab4850497c5481f5ec6eb1fcdb43646f5":[4,0,2,401],
"group__js_msg.html#gab4850497c5481f5ec6eb1fcdb43646f5":[2,2,13,3,9],
-"group__js_msg.html#gac0697389fa60a3c4725e53cd23ada7bd":[4,0,2,396],
+"group__js_msg.html#gac0697389fa60a3c4725e53cd23ada7bd":[4,0,2,397],
"group__js_msg.html#gac0697389fa60a3c4725e53cd23ada7bd":[2,2,13,3,5],
-"group__js_msg.html#gac271b874154301da9759f9ac05768b47":[4,0,2,395],
+"group__js_msg.html#gac271b874154301da9759f9ac05768b47":[4,0,2,396],
"group__js_msg.html#gac271b874154301da9759f9ac05768b47":[2,2,13,3,4],
-"group__js_msg.html#gacf48e59038fab35849e9dc6f8fcf6328":[4,0,2,391],
+"group__js_msg.html#gacf48e59038fab35849e9dc6f8fcf6328":[4,0,2,392],
"group__js_msg.html#gacf48e59038fab35849e9dc6f8fcf6328":[2,2,13,3,0],
-"group__js_msg.html#gae1e0beb19cd76e2f69e6415c41c9bb39":[4,0,2,397],
+"group__js_msg.html#gae1e0beb19cd76e2f69e6415c41c9bb39":[4,0,2,398],
"group__js_msg.html#gae1e0beb19cd76e2f69e6415c41c9bb39":[2,2,13,3,6],
-"group__js_msg.html#gae454fb7e7097a3cd3362cb49ef8a3c84":[4,0,2,393],
+"group__js_msg.html#gae454fb7e7097a3cd3362cb49ef8a3c84":[4,0,2,394],
"group__js_msg.html#gae454fb7e7097a3cd3362cb49ef8a3c84":[2,2,13,3,2],
-"group__js_msg.html#gae84d21e4388255e9d990e53c9f67e7c4":[4,0,2,398],
+"group__js_msg.html#gae84d21e4388255e9d990e53c9f67e7c4":[4,0,2,399],
"group__js_msg.html#gae84d21e4388255e9d990e53c9f67e7c4":[2,2,13,3,7],
-"group__js_msg.html#gaf9bf92294342bcb27053de7038606d12":[4,0,2,392],
+"group__js_msg.html#gaf9bf92294342bcb27053de7038606d12":[4,0,2,393],
"group__js_msg.html#gaf9bf92294342bcb27053de7038606d12":[2,2,13,3,1],
-"group__js_msg.html#gafb899ebf8e89b3a858fe20f7853635a7":[4,0,2,394],
+"group__js_msg.html#gafb899ebf8e89b3a858fe20f7853635a7":[4,0,2,395],
"group__js_msg.html#gafb899ebf8e89b3a858fe20f7853635a7":[2,2,13,3,3],
"group__js_pub_group.html":[2,2,13,1],
-"group__js_pub_group.html#ga069dfd6f0f3d96f1ff8bf2372e59900c":[4,0,2,375],
+"group__js_pub_group.html#ga069dfd6f0f3d96f1ff8bf2372e59900c":[4,0,2,376],
"group__js_pub_group.html#ga069dfd6f0f3d96f1ff8bf2372e59900c":[2,2,13,1,4],
-"group__js_pub_group.html#ga24813ee9a58f00c0f21d10ab9c93b81d":[4,0,2,377],
+"group__js_pub_group.html#ga24813ee9a58f00c0f21d10ab9c93b81d":[4,0,2,378],
"group__js_pub_group.html#ga24813ee9a58f00c0f21d10ab9c93b81d":[2,2,13,1,6],
-"group__js_pub_group.html#ga2ac95a3450f77f8074fae3f2fbe7e54c":[4,0,2,378],
+"group__js_pub_group.html#ga2ac95a3450f77f8074fae3f2fbe7e54c":[4,0,2,379],
"group__js_pub_group.html#ga2ac95a3450f77f8074fae3f2fbe7e54c":[2,2,13,1,7],
-"group__js_pub_group.html#ga2aceeb82fac3621aea843dd246732bdd":[4,0,2,373],
+"group__js_pub_group.html#ga2aceeb82fac3621aea843dd246732bdd":[4,0,2,374],
"group__js_pub_group.html#ga2aceeb82fac3621aea843dd246732bdd":[2,2,13,1,2],
-"group__js_pub_group.html#gaac130840b6db9109e72cf6ad9186dfc4":[4,0,2,374],
+"group__js_pub_group.html#gaac130840b6db9109e72cf6ad9186dfc4":[4,0,2,375],
"group__js_pub_group.html#gaac130840b6db9109e72cf6ad9186dfc4":[2,2,13,1,3],
-"group__js_pub_group.html#gab7e4139a48c5ee4d2155cbb43142e873":[4,0,2,376],
+"group__js_pub_group.html#gab7e4139a48c5ee4d2155cbb43142e873":[4,0,2,377],
"group__js_pub_group.html#gab7e4139a48c5ee4d2155cbb43142e873":[2,2,13,1,5],
-"group__js_pub_group.html#gac6ba005531c82d9f0efa88dd6b458477":[4,0,2,372],
+"group__js_pub_group.html#gac6ba005531c82d9f0efa88dd6b458477":[4,0,2,373],
"group__js_pub_group.html#gac6ba005531c82d9f0efa88dd6b458477":[2,2,13,1,1],
-"group__js_pub_group.html#gaf09f333a8675a8060c5ede07a6bdeef9":[4,0,2,371],
+"group__js_pub_group.html#gaf09f333a8675a8060c5ede07a6bdeef9":[4,0,2,372],
"group__js_pub_group.html#gaf09f333a8675a8060c5ede07a6bdeef9":[2,2,13,1,0],
"group__js_sub_group.html":[2,2,13,2],
-"group__js_sub_group.html#ga0daed9f0d2d00cb14314ecc180a6fa84":[4,0,2,390],
+"group__js_sub_group.html#ga0daed9f0d2d00cb14314ecc180a6fa84":[4,0,2,391],
"group__js_sub_group.html#ga0daed9f0d2d00cb14314ecc180a6fa84":[2,2,13,2,11],
-"group__js_sub_group.html#ga1c3a62de8cd4855ae61ea4f67417a43b":[4,0,2,386],
+"group__js_sub_group.html#ga1c3a62de8cd4855ae61ea4f67417a43b":[4,0,2,387],
"group__js_sub_group.html#ga1c3a62de8cd4855ae61ea4f67417a43b":[2,2,13,2,7],
-"group__js_sub_group.html#ga472adb949d1af9d8f07bda99f5d7f3f8":[4,0,2,379],
+"group__js_sub_group.html#ga472adb949d1af9d8f07bda99f5d7f3f8":[4,0,2,380],
"group__js_sub_group.html#ga472adb949d1af9d8f07bda99f5d7f3f8":[2,2,13,2,0],
-"group__js_sub_group.html#ga676292505e7fde8688cfd886b79a10ed":[4,0,2,388],
+"group__js_sub_group.html#ga676292505e7fde8688cfd886b79a10ed":[4,0,2,389],
"group__js_sub_group.html#ga676292505e7fde8688cfd886b79a10ed":[2,2,13,2,9],
-"group__js_sub_group.html#ga938d410675ab09fa8c21896ab61bed0a":[4,0,2,387],
+"group__js_sub_group.html#ga938d410675ab09fa8c21896ab61bed0a":[4,0,2,388],
"group__js_sub_group.html#ga938d410675ab09fa8c21896ab61bed0a":[2,2,13,2,8],
-"group__js_sub_group.html#gaa686c6efd84ef963de1925108e896515":[4,0,2,380],
+"group__js_sub_group.html#gaa686c6efd84ef963de1925108e896515":[4,0,2,381],
"group__js_sub_group.html#gaa686c6efd84ef963de1925108e896515":[2,2,13,2,1],
-"group__js_sub_group.html#gaae716a1431db065744c079b71a9f4c2e":[4,0,2,389],
+"group__js_sub_group.html#gaae716a1431db065744c079b71a9f4c2e":[4,0,2,390],
"group__js_sub_group.html#gaae716a1431db065744c079b71a9f4c2e":[2,2,13,2,10],
-"group__js_sub_group.html#gaaeaddb73857aa4eb4901eec945ed27cd":[4,0,2,384],
+"group__js_sub_group.html#gaaeaddb73857aa4eb4901eec945ed27cd":[4,0,2,385],
"group__js_sub_group.html#gaaeaddb73857aa4eb4901eec945ed27cd":[2,2,13,2,5],
-"group__js_sub_group.html#gabacb010031e535f9fb6e2167337e8adf":[4,0,2,382],
+"group__js_sub_group.html#gabacb010031e535f9fb6e2167337e8adf":[4,0,2,383],
"group__js_sub_group.html#gabacb010031e535f9fb6e2167337e8adf":[2,2,13,2,3],
-"group__js_sub_group.html#gabb2540e3c4edd2a68692a78d756b537c":[4,0,2,383],
+"group__js_sub_group.html#gabb2540e3c4edd2a68692a78d756b537c":[4,0,2,384],
"group__js_sub_group.html#gabb2540e3c4edd2a68692a78d756b537c":[2,2,13,2,4],
-"group__js_sub_group.html#gacb33da7a1644f8cad9d3c202a006bc91":[4,0,2,381],
+"group__js_sub_group.html#gacb33da7a1644f8cad9d3c202a006bc91":[4,0,2,382],
"group__js_sub_group.html#gacb33da7a1644f8cad9d3c202a006bc91":[2,2,13,2,2],
-"group__js_sub_group.html#gafc5e0d2269bd23b4d5fb7f3b05278e50":[4,0,2,385],
+"group__js_sub_group.html#gafc5e0d2269bd23b4d5fb7f3b05278e50":[4,0,2,386],
"group__js_sub_group.html#gafc5e0d2269bd23b4d5fb7f3b05278e50":[2,2,13,2,6],
"group__kv_entry.html":[2,2,14,1],
-"group__kv_entry.html#ga088fd67d3d384ad7a7ddfc82535becea":[4,0,2,414],
+"group__kv_entry.html#ga088fd67d3d384ad7a7ddfc82535becea":[4,0,2,415],
"group__kv_entry.html#ga088fd67d3d384ad7a7ddfc82535becea":[2,2,14,1,8],
-"group__kv_entry.html#ga233a2d75895cfd0140cf77757592cf47":[4,0,2,413],
+"group__kv_entry.html#ga233a2d75895cfd0140cf77757592cf47":[4,0,2,414],
"group__kv_entry.html#ga233a2d75895cfd0140cf77757592cf47":[2,2,14,1,7],
-"group__kv_entry.html#ga2d58abf81cb577e21a76f9c77568409f":[4,0,2,411],
+"group__kv_entry.html#ga2d58abf81cb577e21a76f9c77568409f":[4,0,2,412],
"group__kv_entry.html#ga2d58abf81cb577e21a76f9c77568409f":[2,2,14,1,5],
-"group__kv_entry.html#ga2d7c58132964d1d2861a30cc38b960aa":[4,0,2,407],
+"group__kv_entry.html#ga2d7c58132964d1d2861a30cc38b960aa":[4,0,2,408],
"group__kv_entry.html#ga2d7c58132964d1d2861a30cc38b960aa":[2,2,14,1,1],
-"group__kv_entry.html#ga31ef3a2e3a7df6cf4dbb0a762737800a":[4,0,2,412],
+"group__kv_entry.html#ga31ef3a2e3a7df6cf4dbb0a762737800a":[4,0,2,413],
"group__kv_entry.html#ga31ef3a2e3a7df6cf4dbb0a762737800a":[2,2,14,1,6],
-"group__kv_entry.html#ga3671d74ba764a888c0c3f0df8d5c9dc0":[4,0,2,406],
+"group__kv_entry.html#ga3671d74ba764a888c0c3f0df8d5c9dc0":[4,0,2,407],
"group__kv_entry.html#ga3671d74ba764a888c0c3f0df8d5c9dc0":[2,2,14,1,0],
-"group__kv_entry.html#ga81060a449976b6801049763d4fe7339f":[4,0,2,410],
+"group__kv_entry.html#ga81060a449976b6801049763d4fe7339f":[4,0,2,411],
"group__kv_entry.html#ga81060a449976b6801049763d4fe7339f":[2,2,14,1,4],
-"group__kv_entry.html#ga82de8c62ea3ef6f8839169f922631176":[4,0,2,408],
+"group__kv_entry.html#ga82de8c62ea3ef6f8839169f922631176":[4,0,2,409],
"group__kv_entry.html#ga82de8c62ea3ef6f8839169f922631176":[2,2,14,1,2],
-"group__kv_entry.html#ga8359ffcdeefb9c5821e6442d0d5ee388":[4,0,2,415],
+"group__kv_entry.html#ga8359ffcdeefb9c5821e6442d0d5ee388":[4,0,2,416],
"group__kv_entry.html#ga8359ffcdeefb9c5821e6442d0d5ee388":[2,2,14,1,9],
-"group__kv_entry.html#gaf7ccc866865903f231e0431754ed2415":[4,0,2,409],
+"group__kv_entry.html#gaf7ccc866865903f231e0431754ed2415":[4,0,2,410],
"group__kv_entry.html#gaf7ccc866865903f231e0431754ed2415":[2,2,14,1,3],
"group__kv_group.html":[2,2,14],
-"group__kv_group.html#ga02ccd58bc5062f6ce6f94bf05e3dfe45":[4,0,2,434],
+"group__kv_group.html#ga02ccd58bc5062f6ce6f94bf05e3dfe45":[4,0,2,435],
"group__kv_group.html#ga02ccd58bc5062f6ce6f94bf05e3dfe45":[2,2,14,22],
-"group__kv_group.html#ga13ed70f15cd1485cd15f96bcc4b7ad1c":[4,0,2,423],
+"group__kv_group.html#ga13ed70f15cd1485cd15f96bcc4b7ad1c":[4,0,2,424],
"group__kv_group.html#ga13ed70f15cd1485cd15f96bcc4b7ad1c":[2,2,14,11],
-"group__kv_group.html#ga1fdf7a1d3acf96e475184790589a401e":[4,0,2,418],
+"group__kv_group.html#ga1fdf7a1d3acf96e475184790589a401e":[4,0,2,419],
"group__kv_group.html#ga1fdf7a1d3acf96e475184790589a401e":[2,2,14,6],
-"group__kv_group.html#ga243113fd7df34ce104850ab888f04021":[4,0,2,427],
+"group__kv_group.html#ga243113fd7df34ce104850ab888f04021":[4,0,2,428],
"group__kv_group.html#ga243113fd7df34ce104850ab888f04021":[2,2,14,15],
-"group__kv_group.html#ga2db86f80d6bfce1bdbedf1b9da22913c":[4,0,2,416],
+"group__kv_group.html#ga2db86f80d6bfce1bdbedf1b9da22913c":[4,0,2,417],
"group__kv_group.html#ga2db86f80d6bfce1bdbedf1b9da22913c":[2,2,14,4],
-"group__kv_group.html#ga30feca870f580c7b9d2ad07a740505b2":[4,0,2,429],
+"group__kv_group.html#ga30feca870f580c7b9d2ad07a740505b2":[4,0,2,430],
"group__kv_group.html#ga30feca870f580c7b9d2ad07a740505b2":[2,2,14,17],
-"group__kv_group.html#ga34ab74b229ff88e64301ea53a274da69":[4,0,2,428],
+"group__kv_group.html#ga34ab74b229ff88e64301ea53a274da69":[4,0,2,429],
"group__kv_group.html#ga34ab74b229ff88e64301ea53a274da69":[2,2,14,16],
-"group__kv_group.html#ga3d5fa3d895d0d3041440105b244e9ca9":[4,0,2,425],
+"group__kv_group.html#ga3d5fa3d895d0d3041440105b244e9ca9":[4,0,2,426],
"group__kv_group.html#ga3d5fa3d895d0d3041440105b244e9ca9":[2,2,14,13],
-"group__kv_group.html#ga409bfd787a87d0e37b69d3711fdb28f4":[4,0,2,430],
+"group__kv_group.html#ga409bfd787a87d0e37b69d3711fdb28f4":[4,0,2,431],
"group__kv_group.html#ga409bfd787a87d0e37b69d3711fdb28f4":[2,2,14,18],
-"group__kv_group.html#ga5289f7cd3999cfb46fb1fcb83178aec6":[4,0,2,420],
+"group__kv_group.html#ga5289f7cd3999cfb46fb1fcb83178aec6":[4,0,2,421],
"group__kv_group.html#ga5289f7cd3999cfb46fb1fcb83178aec6":[2,2,14,8],
-"group__kv_group.html#ga5726ad2e6205d2f6749be013138218ca":[4,0,2,421],
+"group__kv_group.html#ga5726ad2e6205d2f6749be013138218ca":[4,0,2,422],
"group__kv_group.html#ga5726ad2e6205d2f6749be013138218ca":[2,2,14,9],
-"group__kv_group.html#ga5aa57345313cee85b020e50c22023fb5":[4,0,2,435],
+"group__kv_group.html#ga5aa57345313cee85b020e50c22023fb5":[4,0,2,436],
"group__kv_group.html#ga5aa57345313cee85b020e50c22023fb5":[2,2,14,23],
-"group__kv_group.html#ga6030fc2a672ae868f7603587245b9d5a":[4,0,2,432],
+"group__kv_group.html#ga6030fc2a672ae868f7603587245b9d5a":[4,0,2,433],
"group__kv_group.html#ga6030fc2a672ae868f7603587245b9d5a":[2,2,14,20],
-"group__kv_group.html#ga68101d46739ca894fd7c56c8661c08d8":[4,0,2,424],
+"group__kv_group.html#ga68101d46739ca894fd7c56c8661c08d8":[4,0,2,425],
"group__kv_group.html#ga68101d46739ca894fd7c56c8661c08d8":[2,2,14,12],
-"group__kv_group.html#ga762fd5de8cde683e46a6736a51e575f5":[4,0,2,426],
+"group__kv_group.html#ga762fd5de8cde683e46a6736a51e575f5":[4,0,2,427],
"group__kv_group.html#ga762fd5de8cde683e46a6736a51e575f5":[2,2,14,14],
-"group__kv_group.html#ga84ebd66a95ce857765d4a16ec35daba9":[4,0,2,419],
+"group__kv_group.html#ga84ebd66a95ce857765d4a16ec35daba9":[4,0,2,420],
"group__kv_group.html#ga84ebd66a95ce857765d4a16ec35daba9":[2,2,14,7],
-"group__kv_group.html#ga8fd5aa9d1c7af511650f60863a21ee84":[4,0,2,437],
+"group__kv_group.html#ga8fd5aa9d1c7af511650f60863a21ee84":[4,0,2,438],
"group__kv_group.html#ga8fd5aa9d1c7af511650f60863a21ee84":[2,2,14,25],
-"group__kv_group.html#ga9bf43431bb8264a3ea1f0df401afbe1a":[4,0,2,417],
+"group__kv_group.html#ga9bf43431bb8264a3ea1f0df401afbe1a":[4,0,2,418],
"group__kv_group.html#ga9bf43431bb8264a3ea1f0df401afbe1a":[2,2,14,5],
-"group__kv_group.html#gadf75e99cc28bc9c2d6eac7c9f7398c27":[4,0,2,438],
+"group__kv_group.html#gadf75e99cc28bc9c2d6eac7c9f7398c27":[4,0,2,439],
"group__kv_group.html#gadf75e99cc28bc9c2d6eac7c9f7398c27":[2,2,14,26],
-"group__kv_group.html#gae0c593bb2ef94ae60e775617c9423038":[4,0,2,422],
+"group__kv_group.html#gae0c593bb2ef94ae60e775617c9423038":[4,0,2,423],
"group__kv_group.html#gae0c593bb2ef94ae60e775617c9423038":[2,2,14,10],
-"group__kv_group.html#gae1a017ca0ea67375b9d94dc426d47042":[4,0,2,433],
+"group__kv_group.html#gae1a017ca0ea67375b9d94dc426d47042":[4,0,2,434],
"group__kv_group.html#gae1a017ca0ea67375b9d94dc426d47042":[2,2,14,21],
-"group__kv_group.html#gae783352ab81e22aa3173057d117518e6":[4,0,2,436],
+"group__kv_group.html#gae783352ab81e22aa3173057d117518e6":[4,0,2,437],
"group__kv_group.html#gae783352ab81e22aa3173057d117518e6":[2,2,14,24],
-"group__kv_group.html#gaf011f1dd6813391c65664e982747602e":[4,0,2,431],
+"group__kv_group.html#gaf011f1dd6813391c65664e982747602e":[4,0,2,432],
"group__kv_group.html#gaf011f1dd6813391c65664e982747602e":[2,2,14,19],
"group__kv_group_mgt.html":[2,2,14,0],
-"group__kv_group_mgt.html#ga16d4c27d8ac62bb86ba601bc40f53172":[4,0,2,401],
+"group__kv_group_mgt.html#ga16d4c27d8ac62bb86ba601bc40f53172":[4,0,2,402],
"group__kv_group_mgt.html#ga16d4c27d8ac62bb86ba601bc40f53172":[2,2,14,0,0],
-"group__kv_group_mgt.html#ga54e6c109a7c633e431b3eded286e00f6":[4,0,2,403],
+"group__kv_group_mgt.html#ga54e6c109a7c633e431b3eded286e00f6":[4,0,2,404],
"group__kv_group_mgt.html#ga54e6c109a7c633e431b3eded286e00f6":[2,2,14,0,2],
-"group__kv_group_mgt.html#ga6bc715319560bc28359679fcdcead937":[4,0,2,404],
+"group__kv_group_mgt.html#ga6bc715319560bc28359679fcdcead937":[4,0,2,405],
"group__kv_group_mgt.html#ga6bc715319560bc28359679fcdcead937":[2,2,14,0,3],
-"group__kv_group_mgt.html#gab0d6bdbfabd27af67eaeb36cec0787da":[4,0,2,405],
+"group__kv_group_mgt.html#gab0d6bdbfabd27af67eaeb36cec0787da":[4,0,2,406],
"group__kv_group_mgt.html#gab0d6bdbfabd27af67eaeb36cec0787da":[2,2,14,0,4],
-"group__kv_group_mgt.html#gabc445bfe87112e56a6c73872fec6893e":[4,0,2,402],
+"group__kv_group_mgt.html#gabc445bfe87112e56a6c73872fec6893e":[4,0,2,403],
"group__kv_group_mgt.html#gabc445bfe87112e56a6c73872fec6893e":[2,2,14,0,1],
"group__kv_status.html":[2,2,14,3],
-"group__kv_status.html#ga2016af3c73841d8b226361e764dce158":[4,0,2,443],
+"group__kv_status.html#ga2016af3c73841d8b226361e764dce158":[4,0,2,444],
"group__kv_status.html#ga2016af3c73841d8b226361e764dce158":[2,2,14,3,1],
-"group__kv_status.html#ga5eb3d824c1873af705beee4798246a08":[4,0,2,448],
+"group__kv_status.html#ga5eb3d824c1873af705beee4798246a08":[4,0,2,449],
"group__kv_status.html#ga5eb3d824c1873af705beee4798246a08":[2,2,14,3,6],
-"group__kv_status.html#ga6db13a3b26c7c17633623da5f27978ff":[4,0,2,447],
+"group__kv_status.html#ga6db13a3b26c7c17633623da5f27978ff":[4,0,2,448],
"group__kv_status.html#ga6db13a3b26c7c17633623da5f27978ff":[2,2,14,3,5],
-"group__kv_status.html#ga86b114f4dac9f06df86101f84bd497b2":[4,0,2,446],
+"group__kv_status.html#ga86b114f4dac9f06df86101f84bd497b2":[4,0,2,447],
"group__kv_status.html#ga86b114f4dac9f06df86101f84bd497b2":[2,2,14,3,4],
-"group__kv_status.html#ga9b81e3c0aa80b6165657cd68b687c156":[4,0,2,442],
+"group__kv_status.html#ga9b81e3c0aa80b6165657cd68b687c156":[4,0,2,443],
"group__kv_status.html#ga9b81e3c0aa80b6165657cd68b687c156":[2,2,14,3,0],
-"group__kv_status.html#gaa747ad0a6182ec7a47fb47018c33d1c1":[4,0,2,445],
+"group__kv_status.html#gaa747ad0a6182ec7a47fb47018c33d1c1":[4,0,2,446],
"group__kv_status.html#gaa747ad0a6182ec7a47fb47018c33d1c1":[2,2,14,3,3],
-"group__kv_status.html#gada6f22b5659b184762cea4f45d369ee5":[4,0,2,444],
+"group__kv_status.html#gada6f22b5659b184762cea4f45d369ee5":[4,0,2,445],
"group__kv_status.html#gada6f22b5659b184762cea4f45d369ee5":[2,2,14,3,2],
"group__kv_watcher.html":[2,2,14,2],
-"group__kv_watcher.html#ga21bc39fa795f7c4f392bd6d4e66ea1d9":[4,0,2,441],
+"group__kv_watcher.html#ga21bc39fa795f7c4f392bd6d4e66ea1d9":[4,0,2,442],
"group__kv_watcher.html#ga21bc39fa795f7c4f392bd6d4e66ea1d9":[2,2,14,2,2],
-"group__kv_watcher.html#ga562c216a0199c30455af4c2da46000e5":[4,0,2,439],
+"group__kv_watcher.html#ga562c216a0199c30455af4c2da46000e5":[4,0,2,440],
"group__kv_watcher.html#ga562c216a0199c30455af4c2da46000e5":[2,2,14,2,0],
-"group__kv_watcher.html#ga73adf44114fedd62ef75ebd81839b65e":[4,0,2,440],
+"group__kv_watcher.html#ga73adf44114fedd62ef75ebd81839b65e":[4,0,2,441],
"group__kv_watcher.html#ga73adf44114fedd62ef75ebd81839b65e":[2,2,14,2,1],
"group__libevent_functions.html":[2,6],
"group__libevent_functions.html#ga195d269473332931fd0fede0bac3309e":[2,6,0],
@@ -236,8 +238,8 @@ var NAVTREEINDEX1 =
"group__libuv_functions.html":[2,7],
"group__libuv_functions.html#ga1baf4a20b138dcf00807a8b830f4e02d":[4,0,1,1],
"group__libuv_functions.html#ga1baf4a20b138dcf00807a8b830f4e02d":[2,7,1],
-"group__libuv_functions.html#ga5d4b677cbe1cd132c37bc56dbfc6949e":[2,7,0],
"group__libuv_functions.html#ga5d4b677cbe1cd132c37bc56dbfc6949e":[4,0,1,0],
+"group__libuv_functions.html#ga5d4b677cbe1cd132c37bc56dbfc6949e":[2,7,0],
"group__libuv_functions.html#ga85c722b2d2699a954362b20528f0aaac":[4,0,1,3],
"group__libuv_functions.html#ga85c722b2d2699a954362b20528f0aaac":[2,7,3],
"group__libuv_functions.html#ga86ac71cffe752effd7397740d80c3c42":[4,0,1,2],
@@ -247,7 +249,5 @@ var NAVTREEINDEX1 =
"group__libuv_functions.html#gafaa633c9067f485f330b72644277b07d":[4,0,1,4],
"group__libuv_functions.html#gafaa633c9067f485f330b72644277b07d":[2,7,4],
"group__micro_callbacks.html":[2,3,1],
-"group__micro_callbacks.html#ga7a40fbbb9b1102f0a7679f9dfcf6c0d6":[4,0,2,124],
-"group__micro_callbacks.html#ga7a40fbbb9b1102f0a7679f9dfcf6c0d6":[2,3,1,1],
-"group__micro_callbacks.html#ga95c185268f8eb44fa6ee16db4b33958e":[4,0,2,123]
+"group__micro_callbacks.html#ga7a40fbbb9b1102f0a7679f9dfcf6c0d6":[4,0,2,124]
};
diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js
index 0f4b0ac21..7a50bce61 100644
--- a/doc/html/navtreeindex2.js
+++ b/doc/html/navtreeindex2.js
@@ -1,19 +1,21 @@
var NAVTREEINDEX2 =
{
+"group__micro_callbacks.html#ga7a40fbbb9b1102f0a7679f9dfcf6c0d6":[2,3,1,1],
+"group__micro_callbacks.html#ga95c185268f8eb44fa6ee16db4b33958e":[4,0,2,123],
"group__micro_callbacks.html#ga95c185268f8eb44fa6ee16db4b33958e":[2,3,1,0],
"group__micro_callbacks.html#gae0341a98388ffd1094472d2ced36d840":[4,0,2,125],
"group__micro_callbacks.html#gae0341a98388ffd1094472d2ced36d840":[2,3,1,2],
"group__micro_cleanup_functions.html":[2,3,4,5],
-"group__micro_cleanup_functions.html#ga9b4756ed693ce4fc0f06375aa0d3d54c":[4,0,2,491],
+"group__micro_cleanup_functions.html#ga9b4756ed693ce4fc0f06375aa0d3d54c":[4,0,2,492],
"group__micro_cleanup_functions.html#ga9b4756ed693ce4fc0f06375aa0d3d54c":[2,3,4,5,0],
-"group__micro_cleanup_functions.html#gaabcbf8378e6221eea78493a26576c8ce":[4,0,2,492],
+"group__micro_cleanup_functions.html#gaabcbf8378e6221eea78493a26576c8ce":[4,0,2,493],
"group__micro_cleanup_functions.html#gaabcbf8378e6221eea78493a26576c8ce":[2,3,4,5,1],
"group__micro_client_functions.html":[2,3,4,4],
-"group__micro_client_functions.html#ga4d7d96defcccbc48e79b017629723e54":[4,0,2,488],
+"group__micro_client_functions.html#ga4d7d96defcccbc48e79b017629723e54":[4,0,2,489],
"group__micro_client_functions.html#ga4d7d96defcccbc48e79b017629723e54":[2,3,4,4,0],
-"group__micro_client_functions.html#ga62a528edb67328bd7c478b6338656e1a":[4,0,2,489],
+"group__micro_client_functions.html#ga62a528edb67328bd7c478b6338656e1a":[4,0,2,490],
"group__micro_client_functions.html#ga62a528edb67328bd7c478b6338656e1a":[2,3,4,4,1],
-"group__micro_client_functions.html#ga84cfeb41f87c0105f89e17ca37bc88a5":[4,0,2,490],
+"group__micro_client_functions.html#ga84cfeb41f87c0105f89e17ca37bc88a5":[4,0,2,491],
"group__micro_client_functions.html#ga84cfeb41f87c0105f89e17ca37bc88a5":[2,3,4,4,2],
"group__micro_constants.html":[2,3,3],
"group__micro_constants.html#ga27bccc83509da632aec126d97c320fbb":[4,0,2,20],
@@ -37,90 +39,90 @@ var NAVTREEINDEX2 =
"group__micro_constants.html#gae1ba7c2a70df4daaeaba5fbebe9c0904":[4,0,2,21],
"group__micro_constants.html#gae1ba7c2a70df4daaeaba5fbebe9c0904":[2,3,3,5],
"group__micro_error_functions.html":[2,3,4,3],
-"group__micro_error_functions.html#ga1bf0dc7e647ffd431bdca222d9246f07":[4,0,2,484],
+"group__micro_error_functions.html#ga1bf0dc7e647ffd431bdca222d9246f07":[4,0,2,485],
"group__micro_error_functions.html#ga1bf0dc7e647ffd431bdca222d9246f07":[2,3,4,3,5],
-"group__micro_error_functions.html#ga1e4bf12e40b57a5d0a4cf43717771cf2":[4,0,2,482],
+"group__micro_error_functions.html#ga1e4bf12e40b57a5d0a4cf43717771cf2":[4,0,2,483],
"group__micro_error_functions.html#ga1e4bf12e40b57a5d0a4cf43717771cf2":[2,3,4,3,3],
-"group__micro_error_functions.html#ga2648fe981670c5394bd058128ef6478c":[4,0,2,485],
+"group__micro_error_functions.html#ga2648fe981670c5394bd058128ef6478c":[4,0,2,486],
"group__micro_error_functions.html#ga2648fe981670c5394bd058128ef6478c":[2,3,4,3,6],
-"group__micro_error_functions.html#ga29eaa7704203b20e777ebf08f92152d8":[4,0,2,480],
+"group__micro_error_functions.html#ga29eaa7704203b20e777ebf08f92152d8":[4,0,2,481],
"group__micro_error_functions.html#ga29eaa7704203b20e777ebf08f92152d8":[2,3,4,3,1],
-"group__micro_error_functions.html#ga3aa1ac805c27d3afc35c07fbe16c2d04":[4,0,2,487],
+"group__micro_error_functions.html#ga3aa1ac805c27d3afc35c07fbe16c2d04":[4,0,2,488],
"group__micro_error_functions.html#ga3aa1ac805c27d3afc35c07fbe16c2d04":[2,3,4,3,8],
-"group__micro_error_functions.html#ga69edae8121c8a5a093c76ee2662bae54":[4,0,2,483],
+"group__micro_error_functions.html#ga69edae8121c8a5a093c76ee2662bae54":[4,0,2,484],
"group__micro_error_functions.html#ga69edae8121c8a5a093c76ee2662bae54":[2,3,4,3,4],
"group__micro_error_functions.html#ga7d7cf243a0d24ff38fbaf6afdfb461cd":[4,0,2,26],
"group__micro_error_functions.html#ga7d7cf243a0d24ff38fbaf6afdfb461cd":[2,3,4,3,0],
-"group__micro_error_functions.html#ga85d7590097c02c612f7d2e8a9fb46326":[4,0,2,481],
+"group__micro_error_functions.html#ga85d7590097c02c612f7d2e8a9fb46326":[4,0,2,482],
"group__micro_error_functions.html#ga85d7590097c02c612f7d2e8a9fb46326":[2,3,4,3,2],
-"group__micro_error_functions.html#gaa4e5ef564e64393601f292abfc37e3ad":[4,0,2,486],
+"group__micro_error_functions.html#gaa4e5ef564e64393601f292abfc37e3ad":[4,0,2,487],
"group__micro_error_functions.html#gaa4e5ef564e64393601f292abfc37e3ad":[2,3,4,3,7],
"group__micro_functions.html":[2,3,4],
"group__micro_group.html":[2,3],
"group__micro_group_functions.html":[2,3,4,1],
-"group__micro_group_functions.html#ga4d9bc96f6e349296c2038126c931f027":[4,0,2,461],
+"group__micro_group_functions.html#ga4d9bc96f6e349296c2038126c931f027":[4,0,2,462],
"group__micro_group_functions.html#ga4d9bc96f6e349296c2038126c931f027":[2,3,4,1,1],
-"group__micro_group_functions.html#gaa18fb57d08b18a2927704acfc1343625":[4,0,2,460],
+"group__micro_group_functions.html#gaa18fb57d08b18a2927704acfc1343625":[4,0,2,461],
"group__micro_group_functions.html#gaa18fb57d08b18a2927704acfc1343625":[2,3,4,1,0],
"group__micro_request_functions.html":[2,3,4,2],
-"group__micro_request_functions.html#ga00363230b46c2794165c2dc10ca65fb5":[4,0,2,462],
+"group__micro_request_functions.html#ga00363230b46c2794165c2dc10ca65fb5":[4,0,2,463],
"group__micro_request_functions.html#ga00363230b46c2794165c2dc10ca65fb5":[2,3,4,2,0],
-"group__micro_request_functions.html#ga0c7d26260030ce528aa8e0f9dbb0a643":[4,0,2,478],
+"group__micro_request_functions.html#ga0c7d26260030ce528aa8e0f9dbb0a643":[4,0,2,479],
"group__micro_request_functions.html#ga0c7d26260030ce528aa8e0f9dbb0a643":[2,3,4,2,16],
-"group__micro_request_functions.html#ga18a968ee89c6bd394397a3c140cd3c85":[4,0,2,479],
+"group__micro_request_functions.html#ga18a968ee89c6bd394397a3c140cd3c85":[4,0,2,480],
"group__micro_request_functions.html#ga18a968ee89c6bd394397a3c140cd3c85":[2,3,4,2,17],
-"group__micro_request_functions.html#ga1967e15e58fefc2bef0403fec26b8463":[4,0,2,477],
+"group__micro_request_functions.html#ga1967e15e58fefc2bef0403fec26b8463":[4,0,2,478],
"group__micro_request_functions.html#ga1967e15e58fefc2bef0403fec26b8463":[2,3,4,2,15],
-"group__micro_request_functions.html#ga2089cf41f1b51e1cba8138bfd383433c":[4,0,2,468],
+"group__micro_request_functions.html#ga2089cf41f1b51e1cba8138bfd383433c":[4,0,2,469],
"group__micro_request_functions.html#ga2089cf41f1b51e1cba8138bfd383433c":[2,3,4,2,6],
-"group__micro_request_functions.html#ga3adaed9594560b1d186b047277aa1163":[4,0,2,472],
+"group__micro_request_functions.html#ga3adaed9594560b1d186b047277aa1163":[4,0,2,473],
"group__micro_request_functions.html#ga3adaed9594560b1d186b047277aa1163":[2,3,4,2,10],
-"group__micro_request_functions.html#ga3fd1eef10afd445f517d73f32c9d4fd0":[4,0,2,466],
+"group__micro_request_functions.html#ga3fd1eef10afd445f517d73f32c9d4fd0":[4,0,2,467],
"group__micro_request_functions.html#ga3fd1eef10afd445f517d73f32c9d4fd0":[2,3,4,2,4],
-"group__micro_request_functions.html#ga4152732a49fc6401dc25bea5aa10b7fb":[4,0,2,465],
+"group__micro_request_functions.html#ga4152732a49fc6401dc25bea5aa10b7fb":[4,0,2,466],
"group__micro_request_functions.html#ga4152732a49fc6401dc25bea5aa10b7fb":[2,3,4,2,3],
-"group__micro_request_functions.html#ga47f26882c6d2d9436f18fe75d2a17fa6":[4,0,2,464],
+"group__micro_request_functions.html#ga47f26882c6d2d9436f18fe75d2a17fa6":[4,0,2,465],
"group__micro_request_functions.html#ga47f26882c6d2d9436f18fe75d2a17fa6":[2,3,4,2,2],
-"group__micro_request_functions.html#ga4e8b8a731d62941fb46561538c04333e":[4,0,2,475],
+"group__micro_request_functions.html#ga4e8b8a731d62941fb46561538c04333e":[4,0,2,476],
"group__micro_request_functions.html#ga4e8b8a731d62941fb46561538c04333e":[2,3,4,2,13],
-"group__micro_request_functions.html#ga7e27d518d856dbe040c17548d4757633":[4,0,2,471],
+"group__micro_request_functions.html#ga7e27d518d856dbe040c17548d4757633":[4,0,2,472],
"group__micro_request_functions.html#ga7e27d518d856dbe040c17548d4757633":[2,3,4,2,9],
-"group__micro_request_functions.html#ga983d262fb2e77314af0f7bc0178306b9":[4,0,2,469],
+"group__micro_request_functions.html#ga983d262fb2e77314af0f7bc0178306b9":[4,0,2,470],
"group__micro_request_functions.html#ga983d262fb2e77314af0f7bc0178306b9":[2,3,4,2,7],
-"group__micro_request_functions.html#ga9925f42bbbf9831350a3065795631b0c":[4,0,2,474],
+"group__micro_request_functions.html#ga9925f42bbbf9831350a3065795631b0c":[4,0,2,475],
"group__micro_request_functions.html#ga9925f42bbbf9831350a3065795631b0c":[2,3,4,2,12],
-"group__micro_request_functions.html#ga9f034636bf30623443b14542efd9a2f9":[4,0,2,476],
+"group__micro_request_functions.html#ga9f034636bf30623443b14542efd9a2f9":[4,0,2,477],
"group__micro_request_functions.html#ga9f034636bf30623443b14542efd9a2f9":[2,3,4,2,14],
-"group__micro_request_functions.html#gabb15bd720ee13fa8e489c8ae9ee52298":[4,0,2,470],
+"group__micro_request_functions.html#gabb15bd720ee13fa8e489c8ae9ee52298":[4,0,2,471],
"group__micro_request_functions.html#gabb15bd720ee13fa8e489c8ae9ee52298":[2,3,4,2,8],
-"group__micro_request_functions.html#gaef03919ee49345f9eeb6b89c44936447":[4,0,2,473],
+"group__micro_request_functions.html#gaef03919ee49345f9eeb6b89c44936447":[4,0,2,474],
"group__micro_request_functions.html#gaef03919ee49345f9eeb6b89c44936447":[2,3,4,2,11],
-"group__micro_request_functions.html#gaf284671188c1d04a7488e20063b3ed54":[4,0,2,467],
+"group__micro_request_functions.html#gaf284671188c1d04a7488e20063b3ed54":[4,0,2,468],
"group__micro_request_functions.html#gaf284671188c1d04a7488e20063b3ed54":[2,3,4,2,5],
-"group__micro_request_functions.html#gaf3d72b449f4a72da06f3a7ce859a1ce9":[4,0,2,463],
+"group__micro_request_functions.html#gaf3d72b449f4a72da06f3a7ce859a1ce9":[4,0,2,464],
"group__micro_request_functions.html#gaf3d72b449f4a72da06f3a7ce859a1ce9":[2,3,4,2,1],
"group__micro_service_functions.html":[2,3,4,0],
-"group__micro_service_functions.html#ga112ef90de06648f29330e191b5d613dc":[4,0,2,450],
+"group__micro_service_functions.html#ga112ef90de06648f29330e191b5d613dc":[4,0,2,451],
"group__micro_service_functions.html#ga112ef90de06648f29330e191b5d613dc":[2,3,4,0,1],
-"group__micro_service_functions.html#ga1e74f8d482ac32e9bcf29b0609d2ade6":[4,0,2,451],
+"group__micro_service_functions.html#ga1e74f8d482ac32e9bcf29b0609d2ade6":[4,0,2,452],
"group__micro_service_functions.html#ga1e74f8d482ac32e9bcf29b0609d2ade6":[2,3,4,0,2],
-"group__micro_service_functions.html#ga2eb6ef97d3939fee33e857227ef570ee":[4,0,2,455],
+"group__micro_service_functions.html#ga2eb6ef97d3939fee33e857227ef570ee":[4,0,2,456],
"group__micro_service_functions.html#ga2eb6ef97d3939fee33e857227ef570ee":[2,3,4,0,6],
-"group__micro_service_functions.html#ga348b4d33e070d9f9c991bd1165e45508":[4,0,2,453],
+"group__micro_service_functions.html#ga348b4d33e070d9f9c991bd1165e45508":[4,0,2,454],
"group__micro_service_functions.html#ga348b4d33e070d9f9c991bd1165e45508":[2,3,4,0,4],
-"group__micro_service_functions.html#ga3c54fa4faa6de985c411b08e62557d6e":[4,0,2,459],
+"group__micro_service_functions.html#ga3c54fa4faa6de985c411b08e62557d6e":[4,0,2,460],
"group__micro_service_functions.html#ga3c54fa4faa6de985c411b08e62557d6e":[2,3,4,0,10],
-"group__micro_service_functions.html#ga6a6a59f10e6764442bcac7fdd34b07d2":[4,0,2,458],
+"group__micro_service_functions.html#ga6a6a59f10e6764442bcac7fdd34b07d2":[4,0,2,459],
"group__micro_service_functions.html#ga6a6a59f10e6764442bcac7fdd34b07d2":[2,3,4,0,9],
-"group__micro_service_functions.html#ga715dc8b99716d691c37baa510697e9d6":[4,0,2,454],
+"group__micro_service_functions.html#ga715dc8b99716d691c37baa510697e9d6":[4,0,2,455],
"group__micro_service_functions.html#ga715dc8b99716d691c37baa510697e9d6":[2,3,4,0,5],
-"group__micro_service_functions.html#gab238a5c3d44f03a32bf2ecae62e11c19":[4,0,2,449],
+"group__micro_service_functions.html#gab238a5c3d44f03a32bf2ecae62e11c19":[4,0,2,450],
"group__micro_service_functions.html#gab238a5c3d44f03a32bf2ecae62e11c19":[2,3,4,0,0],
-"group__micro_service_functions.html#gac829b81893f09b1ed7c401147ed6b0c0":[4,0,2,457],
+"group__micro_service_functions.html#gac829b81893f09b1ed7c401147ed6b0c0":[4,0,2,458],
"group__micro_service_functions.html#gac829b81893f09b1ed7c401147ed6b0c0":[2,3,4,0,8],
-"group__micro_service_functions.html#gad7da17f143822a5caa57c90505453a6d":[4,0,2,452],
+"group__micro_service_functions.html#gad7da17f143822a5caa57c90505453a6d":[4,0,2,453],
"group__micro_service_functions.html#gad7da17f143822a5caa57c90505453a6d":[2,3,4,0,3],
-"group__micro_service_functions.html#gaf59402d29dba31982e899415863a62d8":[4,0,2,456],
+"group__micro_service_functions.html#gaf59402d29dba31982e899415863a62d8":[4,0,2,457],
"group__micro_service_functions.html#gaf59402d29dba31982e899415863a62d8":[2,3,4,0,7],
"group__micro_structs.html":[2,3,2],
"group__micro_types.html":[2,3,0],
@@ -142,11 +144,11 @@ var NAVTREEINDEX2 =
"group__micro_types.html#ga550430b08d2e071e3901c6d720f4a039":[2,3,0,1],
"group__micro_types.html#ga7718d2f2c911e4cf677788f4ffe048cd":[4,0,2,112],
"group__micro_types.html#ga7718d2f2c911e4cf677788f4ffe048cd":[2,3,0,3],
-"group__micro_types.html#ga7c15167de03a8d39553afb2b81caca6b":[4,0,2,494],
+"group__micro_types.html#ga7c15167de03a8d39553afb2b81caca6b":[4,0,2,495],
"group__micro_types.html#ga7c15167de03a8d39553afb2b81caca6b":[2,3,0,15],
"group__micro_types.html#ga8ea3d2aa37d1e89fb9c6d87c10dfe603":[4,0,2,117],
"group__micro_types.html#ga8ea3d2aa37d1e89fb9c6d87c10dfe603":[2,3,0,8],
-"group__micro_types.html#gab8c75a7c8001f647b5d2f27a0b26e82e":[4,0,2,493],
+"group__micro_types.html#gab8c75a7c8001f647b5d2f27a0b26e82e":[4,0,2,494],
"group__micro_types.html#gab8c75a7c8001f647b5d2f27a0b26e82e":[2,3,0,14],
"group__micro_types.html#gadd4fcc67087b4d5f42015a7269cb6496":[4,0,2,113],
"group__micro_types.html#gadd4fcc67087b4d5f42015a7269cb6496":[2,3,0,4],
@@ -159,8 +161,8 @@ var NAVTREEINDEX2 =
"group__msg_group.html":[2,2,7],
"group__msg_group.html#ga098e4fec1c5a71c00a0d092fbd6d1a21":[2,2,7,1],
"group__msg_group.html#ga098e4fec1c5a71c00a0d092fbd6d1a21":[4,0,2,235],
-"group__msg_group.html#ga1a091d24f939d881bf04fba78b8995c2":[4,0,2,234],
"group__msg_group.html#ga1a091d24f939d881bf04fba78b8995c2":[2,2,7,0],
+"group__msg_group.html#ga1a091d24f939d881bf04fba78b8995c2":[4,0,2,234],
"group__msg_group.html#ga25b69066ae50287e178aaf4f70f7d3de":[2,2,7,5],
"group__msg_group.html#ga25b69066ae50287e178aaf4f70f7d3de":[4,0,2,239],
"group__msg_group.html#ga2b641ec3b1745604d7de1102e472254b":[2,2,7,7],
@@ -186,8 +188,8 @@ var NAVTREEINDEX2 =
"group__msg_group.html#gaf3e9ab8edfa09b1e40ddb969d9ba5f01":[2,2,7,3],
"group__msg_group.html#gaf3e9ab8edfa09b1e40ddb969d9ba5f01":[4,0,2,237],
"group__opts_group.html":[2,2,3],
-"group__opts_group.html#ga0290eac4665569c850468d9f00e246a0":[2,2,3,50],
"group__opts_group.html#ga0290eac4665569c850468d9f00e246a0":[4,0,2,204],
+"group__opts_group.html#ga0290eac4665569c850468d9f00e246a0":[2,2,3,50],
"group__opts_group.html#ga0ba43ba9930df385e4781b12be9f2851":[4,0,2,171],
"group__opts_group.html#ga0ba43ba9930df385e4781b12be9f2851":[2,2,3,17],
"group__opts_group.html#ga127ec7a8196b453947a7fa9a64096cbd":[2,2,3,32],
@@ -232,8 +234,8 @@ var NAVTREEINDEX2 =
"group__opts_group.html#ga5698f020e8eb3e7440eb073fe08ef62c":[2,2,3,15],
"group__opts_group.html#ga59b47f7b7a19085cf8eaada9bfe5606e":[2,2,3,48],
"group__opts_group.html#ga59b47f7b7a19085cf8eaada9bfe5606e":[4,0,2,202],
-"group__opts_group.html#ga5acd292cdaeb63d3d7bd9bbc05513c8f":[4,0,2,209],
"group__opts_group.html#ga5acd292cdaeb63d3d7bd9bbc05513c8f":[2,2,3,55],
+"group__opts_group.html#ga5acd292cdaeb63d3d7bd9bbc05513c8f":[4,0,2,209],
"group__opts_group.html#ga5b99da7dd74aac3be962f323c3863d9e":[4,0,2,157],
"group__opts_group.html#ga5b99da7dd74aac3be962f323c3863d9e":[2,2,3,3],
"group__opts_group.html#ga5d3d4d1269dd289f93c56b8a1ddccd43":[2,2,3,49],
@@ -247,7 +249,5 @@ var NAVTREEINDEX2 =
"group__opts_group.html#ga6f804ec44adc299989fe623570679da3":[4,0,2,172],
"group__opts_group.html#ga6f804ec44adc299989fe623570679da3":[2,2,3,18],
"group__opts_group.html#ga70aa85319933d78c0076cc862fa3e5a6":[2,2,3,43],
-"group__opts_group.html#ga70aa85319933d78c0076cc862fa3e5a6":[4,0,2,197],
-"group__opts_group.html#ga77afd954ca548054631215e511468e60":[2,2,3,31],
-"group__opts_group.html#ga77afd954ca548054631215e511468e60":[4,0,2,185]
+"group__opts_group.html#ga70aa85319933d78c0076cc862fa3e5a6":[4,0,2,197]
};
diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js
index 71f04de1e..494b6d7ca 100644
--- a/doc/html/navtreeindex3.js
+++ b/doc/html/navtreeindex3.js
@@ -1,5 +1,7 @@
var NAVTREEINDEX3 =
{
+"group__opts_group.html#ga77afd954ca548054631215e511468e60":[2,2,3,31],
+"group__opts_group.html#ga77afd954ca548054631215e511468e60":[4,0,2,185],
"group__opts_group.html#ga7ca713c7532eff4d41a492e95b8822cf":[2,2,3,41],
"group__opts_group.html#ga7ca713c7532eff4d41a492e95b8822cf":[4,0,2,195],
"group__opts_group.html#ga7e4172084520708b8c9f28e73174461c":[2,2,3,37],
@@ -44,8 +46,8 @@ var NAVTREEINDEX3 =
"group__opts_group.html#gadc8dc0cedd91bda71d544f3dedc4a039":[4,0,2,188],
"group__opts_group.html#gadef4376a5e608cbc8c1a9e2b6335dc79":[2,2,3,44],
"group__opts_group.html#gadef4376a5e608cbc8c1a9e2b6335dc79":[4,0,2,198],
-"group__opts_group.html#gae68fb615835364c0809555e8dc93f57e":[4,0,2,175],
"group__opts_group.html#gae68fb615835364c0809555e8dc93f57e":[2,2,3,21],
+"group__opts_group.html#gae68fb615835364c0809555e8dc93f57e":[4,0,2,175],
"group__opts_group.html#gae98f0f9034e93941767ab1ae6eec2c0c":[4,0,2,168],
"group__opts_group.html#gae98f0f9034e93941767ab1ae6eec2c0c":[2,2,3,14],
"group__opts_group.html#gafb30794fc2ae74b9e0bd8fb609b901c8":[4,0,2,166],
@@ -53,15 +55,15 @@ var NAVTREEINDEX3 =
"group__stan_conn_group.html":[2,2,11],
"group__stan_conn_mgt_group.html":[2,2,11,0],
"group__stan_conn_mgt_group.html#ga166ec494a55c9b1f9ebafd2294e05ff6":[2,2,11,0,1],
-"group__stan_conn_mgt_group.html#ga166ec494a55c9b1f9ebafd2294e05ff6":[4,0,2,320],
+"group__stan_conn_mgt_group.html#ga166ec494a55c9b1f9ebafd2294e05ff6":[4,0,2,321],
"group__stan_conn_mgt_group.html#ga2e56a93825e1214a5ab688860e2a8ce6":[2,2,11,0,2],
-"group__stan_conn_mgt_group.html#ga2e56a93825e1214a5ab688860e2a8ce6":[4,0,2,321],
+"group__stan_conn_mgt_group.html#ga2e56a93825e1214a5ab688860e2a8ce6":[4,0,2,322],
"group__stan_conn_mgt_group.html#ga35e0e6e5e3b7f3818a3ac3600efb8f8f":[2,2,11,0,0],
-"group__stan_conn_mgt_group.html#ga35e0e6e5e3b7f3818a3ac3600efb8f8f":[4,0,2,319],
+"group__stan_conn_mgt_group.html#ga35e0e6e5e3b7f3818a3ac3600efb8f8f":[4,0,2,320],
"group__stan_conn_mgt_group.html#ga4952a7f65a53fdb5ca1c26b1a1656f1d":[2,2,11,0,3],
-"group__stan_conn_mgt_group.html#ga4952a7f65a53fdb5ca1c26b1a1656f1d":[4,0,2,322],
+"group__stan_conn_mgt_group.html#ga4952a7f65a53fdb5ca1c26b1a1656f1d":[4,0,2,323],
"group__stan_conn_mgt_group.html#gaea095eec18fdf04e06de16711f8b1a04":[2,2,11,0,4],
-"group__stan_conn_mgt_group.html#gaea095eec18fdf04e06de16711f8b1a04":[4,0,2,323],
+"group__stan_conn_mgt_group.html#gaea095eec18fdf04e06de16711f8b1a04":[4,0,2,324],
"group__stan_conn_opts_group.html":[2,2,4],
"group__stan_conn_opts_group.html#ga07105d1d00878bba19f47243b2c88402":[2,2,4,5],
"group__stan_conn_opts_group.html#ga07105d1d00878bba19f47243b2c88402":[4,0,2,216],
@@ -84,15 +86,15 @@ var NAVTREEINDEX3 =
"group__stan_conn_opts_group.html#gaff52a1ce90253b4bdbb0005fca4f71b6":[2,2,4,0],
"group__stan_conn_opts_group.html#gaff52a1ce90253b4bdbb0005fca4f71b6":[4,0,2,211],
"group__stan_conn_pub_group.html":[2,2,11,1],
-"group__stan_conn_pub_group.html#ga0c4d1e4615f8ac834f0a4021f75d39f0":[4,0,2,325],
"group__stan_conn_pub_group.html#ga0c4d1e4615f8ac834f0a4021f75d39f0":[2,2,11,1,1],
+"group__stan_conn_pub_group.html#ga0c4d1e4615f8ac834f0a4021f75d39f0":[4,0,2,326],
"group__stan_conn_pub_group.html#ga24f3f7f709b15fe53e1edaeead08fc7d":[2,2,11,1,0],
-"group__stan_conn_pub_group.html#ga24f3f7f709b15fe53e1edaeead08fc7d":[4,0,2,324],
+"group__stan_conn_pub_group.html#ga24f3f7f709b15fe53e1edaeead08fc7d":[4,0,2,325],
"group__stan_conn_sub_group.html":[2,2,11,2],
"group__stan_conn_sub_group.html#ga17d42bf9a4fa39470561a1a668e6b4a2":[2,2,11,2,1],
-"group__stan_conn_sub_group.html#ga17d42bf9a4fa39470561a1a668e6b4a2":[4,0,2,327],
+"group__stan_conn_sub_group.html#ga17d42bf9a4fa39470561a1a668e6b4a2":[4,0,2,328],
"group__stan_conn_sub_group.html#gae545358fdc493baf6d29429a8156781f":[2,2,11,2,0],
-"group__stan_conn_sub_group.html#gae545358fdc493baf6d29429a8156781f":[4,0,2,326],
+"group__stan_conn_sub_group.html#gae545358fdc493baf6d29429a8156781f":[4,0,2,327],
"group__stan_msg_group.html":[2,2,8],
"group__stan_msg_group.html#ga27477570a712b0d6315a823fc400b038":[2,2,8,3],
"group__stan_msg_group.html#ga27477570a712b0d6315a823fc400b038":[4,0,2,251],
@@ -108,20 +110,20 @@ var NAVTREEINDEX3 =
"group__stan_msg_group.html#gacd0059fb499963f5b2eae18053e5f74f":[4,0,2,253],
"group__stan_sub_group.html":[2,2,12],
"group__stan_sub_group.html#ga3a1cca9fa3ea54fcf7a43fd1335a26d3":[2,2,12,1],
-"group__stan_sub_group.html#ga3a1cca9fa3ea54fcf7a43fd1335a26d3":[4,0,2,329],
+"group__stan_sub_group.html#ga3a1cca9fa3ea54fcf7a43fd1335a26d3":[4,0,2,330],
+"group__stan_sub_group.html#ga3f6ce924f6a1830a55e30e9910aad4ba":[4,0,2,333],
"group__stan_sub_group.html#ga3f6ce924f6a1830a55e30e9910aad4ba":[2,2,12,4],
-"group__stan_sub_group.html#ga3f6ce924f6a1830a55e30e9910aad4ba":[4,0,2,332],
"group__stan_sub_group.html#ga7b039908ec45cfc2c16ec61ba8daca9d":[2,2,12,0],
-"group__stan_sub_group.html#ga7b039908ec45cfc2c16ec61ba8daca9d":[4,0,2,328],
+"group__stan_sub_group.html#ga7b039908ec45cfc2c16ec61ba8daca9d":[4,0,2,329],
"group__stan_sub_group.html#gacfa3a7b4fa333c84acfa7521fbbb5bcc":[2,2,12,3],
-"group__stan_sub_group.html#gacfa3a7b4fa333c84acfa7521fbbb5bcc":[4,0,2,331],
+"group__stan_sub_group.html#gacfa3a7b4fa333c84acfa7521fbbb5bcc":[4,0,2,332],
"group__stan_sub_group.html#gafa428a7e0f6800216cb06fd738bd235e":[2,2,12,2],
-"group__stan_sub_group.html#gafa428a7e0f6800216cb06fd738bd235e":[4,0,2,330],
+"group__stan_sub_group.html#gafa428a7e0f6800216cb06fd738bd235e":[4,0,2,331],
"group__stan_sub_opts_group.html":[2,2,5],
-"group__stan_sub_opts_group.html#ga1b56877d0a6729e148c9c288e2b88e3f":[2,2,5,10],
"group__stan_sub_opts_group.html#ga1b56877d0a6729e148c9c288e2b88e3f":[4,0,2,231],
-"group__stan_sub_opts_group.html#ga27d9175901997b8468997019746599b5":[4,0,2,227],
+"group__stan_sub_opts_group.html#ga1b56877d0a6729e148c9c288e2b88e3f":[2,2,5,10],
"group__stan_sub_opts_group.html#ga27d9175901997b8468997019746599b5":[2,2,5,6],
+"group__stan_sub_opts_group.html#ga27d9175901997b8468997019746599b5":[4,0,2,227],
"group__stan_sub_opts_group.html#ga35efbdea888e00440c500845064931c0":[2,2,5,3],
"group__stan_sub_opts_group.html#ga35efbdea888e00440c500845064931c0":[4,0,2,224],
"group__stan_sub_opts_group.html#ga6cb7f6e1ac697d16959f9042eeb84dc1":[2,2,5,4],
@@ -136,8 +138,8 @@ var NAVTREEINDEX3 =
"group__stan_sub_opts_group.html#gaafd7a553486eea3c9d309da0744a3608":[4,0,2,226],
"group__stan_sub_opts_group.html#gab09b81358e93199a4631eb06f1ec179f":[2,2,5,8],
"group__stan_sub_opts_group.html#gab09b81358e93199a4631eb06f1ec179f":[4,0,2,229],
-"group__stan_sub_opts_group.html#gad87a2cef4f4ddf64696f9864773c37cf":[4,0,2,221],
"group__stan_sub_opts_group.html#gad87a2cef4f4ddf64696f9864773c37cf":[2,2,5,0],
+"group__stan_sub_opts_group.html#gad87a2cef4f4ddf64696f9864773c37cf":[4,0,2,221],
"group__stan_sub_opts_group.html#gafbb4e6c74978c4e8f30f016c20cc2bdf":[2,2,5,2],
"group__stan_sub_opts_group.html#gafbb4e6c74978c4e8f30f016c20cc2bdf":[4,0,2,223],
"group__stats_group.html":[2,2,2],
@@ -152,54 +154,54 @@ var NAVTREEINDEX3 =
"group__status_group.html#ga0f7a5e105311800d957ae7b28d1ab752":[2,2,1,0],
"group__sub_group.html":[2,2,10],
"group__sub_group.html#ga0408c9b6e4ad4078ac0267656ace222d":[2,2,10,18],
-"group__sub_group.html#ga0408c9b6e4ad4078ac0267656ace222d":[4,0,2,315],
+"group__sub_group.html#ga0408c9b6e4ad4078ac0267656ace222d":[4,0,2,316],
+"group__sub_group.html#ga09f285de2746a6e27fc66efd60bd3116":[4,0,2,301],
"group__sub_group.html#ga09f285de2746a6e27fc66efd60bd3116":[2,2,10,3],
-"group__sub_group.html#ga09f285de2746a6e27fc66efd60bd3116":[4,0,2,300],
-"group__sub_group.html#ga0abc5d9afbc6b0c9c5adaf533904c968":[4,0,2,309],
"group__sub_group.html#ga0abc5d9afbc6b0c9c5adaf533904c968":[2,2,10,12],
+"group__sub_group.html#ga0abc5d9afbc6b0c9c5adaf533904c968":[4,0,2,310],
"group__sub_group.html#ga0f65b49a355530c05445a3b9ce15cecb":[2,2,10,6],
-"group__sub_group.html#ga0f65b49a355530c05445a3b9ce15cecb":[4,0,2,303],
+"group__sub_group.html#ga0f65b49a355530c05445a3b9ce15cecb":[4,0,2,304],
"group__sub_group.html#ga12b60cdb3aca7329edebc480ae86bfab":[2,2,10,14],
-"group__sub_group.html#ga12b60cdb3aca7329edebc480ae86bfab":[4,0,2,311],
+"group__sub_group.html#ga12b60cdb3aca7329edebc480ae86bfab":[4,0,2,312],
"group__sub_group.html#ga24f1636869e26661ce62c9c9f4d80823":[2,2,10,11],
-"group__sub_group.html#ga24f1636869e26661ce62c9c9f4d80823":[4,0,2,308],
+"group__sub_group.html#ga24f1636869e26661ce62c9c9f4d80823":[4,0,2,309],
"group__sub_group.html#ga26c9736289d326fb7d6df7e2a0df72ab":[2,2,10,16],
-"group__sub_group.html#ga26c9736289d326fb7d6df7e2a0df72ab":[4,0,2,313],
-"group__sub_group.html#ga38f1e41fc7619101fc4aa52014dd5428":[4,0,2,297],
+"group__sub_group.html#ga26c9736289d326fb7d6df7e2a0df72ab":[4,0,2,314],
"group__sub_group.html#ga38f1e41fc7619101fc4aa52014dd5428":[2,2,10,0],
+"group__sub_group.html#ga38f1e41fc7619101fc4aa52014dd5428":[4,0,2,298],
"group__sub_group.html#ga476b7276d0b7f9946834d2bb2423e955":[2,2,10,10],
-"group__sub_group.html#ga476b7276d0b7f9946834d2bb2423e955":[4,0,2,307],
+"group__sub_group.html#ga476b7276d0b7f9946834d2bb2423e955":[4,0,2,308],
"group__sub_group.html#ga50a95dd96e9b714201679a015d62832f":[2,2,10,21],
-"group__sub_group.html#ga50a95dd96e9b714201679a015d62832f":[4,0,2,318],
+"group__sub_group.html#ga50a95dd96e9b714201679a015d62832f":[4,0,2,319],
+"group__sub_group.html#ga5a029a784c0a7f8b5800b48cc995db20":[4,0,2,303],
"group__sub_group.html#ga5a029a784c0a7f8b5800b48cc995db20":[2,2,10,5],
-"group__sub_group.html#ga5a029a784c0a7f8b5800b48cc995db20":[4,0,2,302],
"group__sub_group.html#ga5e6454bbc7a90b9694112d45bd8de903":[2,2,10,15],
-"group__sub_group.html#ga5e6454bbc7a90b9694112d45bd8de903":[4,0,2,312],
+"group__sub_group.html#ga5e6454bbc7a90b9694112d45bd8de903":[4,0,2,313],
"group__sub_group.html#ga6538a5d78dfb0f16514b94c8e74c11af":[2,2,10,1],
-"group__sub_group.html#ga6538a5d78dfb0f16514b94c8e74c11af":[4,0,2,298],
-"group__sub_group.html#ga68a7cea89e75c529a7dd3bb77303dda4":[4,0,2,304],
+"group__sub_group.html#ga6538a5d78dfb0f16514b94c8e74c11af":[4,0,2,299],
"group__sub_group.html#ga68a7cea89e75c529a7dd3bb77303dda4":[2,2,10,7],
-"group__sub_group.html#ga786bb458981274fe717f266bd3b96d96":[4,0,2,305],
+"group__sub_group.html#ga68a7cea89e75c529a7dd3bb77303dda4":[4,0,2,305],
+"group__sub_group.html#ga786bb458981274fe717f266bd3b96d96":[4,0,2,306],
"group__sub_group.html#ga786bb458981274fe717f266bd3b96d96":[2,2,10,8],
-"group__sub_group.html#ga8a37b2d5290da3aecc05483d79e7e254":[4,0,2,301],
+"group__sub_group.html#ga8a37b2d5290da3aecc05483d79e7e254":[4,0,2,302],
"group__sub_group.html#ga8a37b2d5290da3aecc05483d79e7e254":[2,2,10,4],
"group__sub_group.html#ga9834bd02f67a25ac084d5ad71e146019":[2,2,10,19],
-"group__sub_group.html#ga9834bd02f67a25ac084d5ad71e146019":[4,0,2,316],
+"group__sub_group.html#ga9834bd02f67a25ac084d5ad71e146019":[4,0,2,317],
"group__sub_group.html#ga9c26a3f9584e7804060a48ec1b7e2a68":[2,2,10,17],
-"group__sub_group.html#ga9c26a3f9584e7804060a48ec1b7e2a68":[4,0,2,314],
+"group__sub_group.html#ga9c26a3f9584e7804060a48ec1b7e2a68":[4,0,2,315],
"group__sub_group.html#gaca6262e2ef842caa701a9f233db72707":[2,2,10,9],
-"group__sub_group.html#gaca6262e2ef842caa701a9f233db72707":[4,0,2,306],
+"group__sub_group.html#gaca6262e2ef842caa701a9f233db72707":[4,0,2,307],
"group__sub_group.html#gaea632f845d473e7461b134c0e7bf4077":[2,2,10,20],
-"group__sub_group.html#gaea632f845d473e7461b134c0e7bf4077":[4,0,2,317],
-"group__sub_group.html#gaee87f8be0e6c2a4693ba2cea070583ba":[4,0,2,299],
+"group__sub_group.html#gaea632f845d473e7461b134c0e7bf4077":[4,0,2,318],
+"group__sub_group.html#gaee87f8be0e6c2a4693ba2cea070583ba":[4,0,2,300],
"group__sub_group.html#gaee87f8be0e6c2a4693ba2cea070583ba":[2,2,10,2],
"group__sub_group.html#gafe31911d8372db401d33856465421710":[2,2,10,13],
-"group__sub_group.html#gafe31911d8372db401d33856465421710":[4,0,2,310],
+"group__sub_group.html#gafe31911d8372db401d33856465421710":[4,0,2,311],
"group__types_group.html":[2,0],
"group__types_group.html#ga0125d394a3cbae2a1713eed8fab7f78e":[4,0,2,85],
"group__types_group.html#ga0125d394a3cbae2a1713eed8fab7f78e":[2,0,103],
-"group__types_group.html#ga023712711f5c289663fc2223e83686d3":[4,0,2,91],
"group__types_group.html#ga023712711f5c289663fc2223e83686d3":[2,0,109],
+"group__types_group.html#ga023712711f5c289663fc2223e83686d3":[4,0,2,91],
"group__types_group.html#ga0483b2197c0ddd9082b48c2dd3fe7cee":[4,0,2,57],
"group__types_group.html#ga0483b2197c0ddd9082b48c2dd3fe7cee":[2,0,75],
"group__types_group.html#ga054c05493dd3cfc5c3e7a665a424e54a":[4,0,2,78],
@@ -247,7 +249,5 @@ var NAVTREEINDEX3 =
"group__types_group.html#ga526fa6d37e818784b94cdc1713f3a043":[4,0,2,81],
"group__types_group.html#ga526fa6d37e818784b94cdc1713f3a043":[2,0,99],
"group__types_group.html#ga55dce2fa9ecd215716cc9ceece7dfefa":[4,0,2,47],
-"group__types_group.html#ga55dce2fa9ecd215716cc9ceece7dfefa":[2,0,65],
-"group__types_group.html#ga57a4b8c7109e2773878655722ce028aa":[4,0,2,29],
-"group__types_group.html#ga57a4b8c7109e2773878655722ce028aa":[2,0,47]
+"group__types_group.html#ga55dce2fa9ecd215716cc9ceece7dfefa":[2,0,65]
};
diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js
index 576710703..c507a0c99 100644
--- a/doc/html/navtreeindex4.js
+++ b/doc/html/navtreeindex4.js
@@ -1,9 +1,11 @@
var NAVTREEINDEX4 =
{
-"group__types_group.html#ga57cdc53b29a4fedb5a4140b6e64a4fab":[4,0,2,69],
+"group__types_group.html#ga57a4b8c7109e2773878655722ce028aa":[4,0,2,29],
+"group__types_group.html#ga57a4b8c7109e2773878655722ce028aa":[2,0,47],
"group__types_group.html#ga57cdc53b29a4fedb5a4140b6e64a4fab":[2,0,87],
-"group__types_group.html#ga617d3ea9036a7ef05dd3868fa56abafc":[2,0,94],
+"group__types_group.html#ga57cdc53b29a4fedb5a4140b6e64a4fab":[4,0,2,69],
"group__types_group.html#ga617d3ea9036a7ef05dd3868fa56abafc":[4,0,2,76],
+"group__types_group.html#ga617d3ea9036a7ef05dd3868fa56abafc":[2,0,94],
"group__types_group.html#ga6d594b091b4bb46192336413066a8edf":[4,0,2,82],
"group__types_group.html#ga6d594b091b4bb46192336413066a8edf":[2,0,100],
"group__types_group.html#ga7bbea3575d35dcdbfc9b766b04269eb7":[4,0,2,38],
@@ -18,14 +20,14 @@ var NAVTREEINDEX4 =
"group__types_group.html#ga87158ec63b4f90f69e20451624ea01d8":[2,0,48],
"group__types_group.html#ga89db3bd6bf11af3ac5eb3ab560d16332":[4,0,2,133],
"group__types_group.html#ga89db3bd6bf11af3ac5eb3ab560d16332":[2,0,117],
-"group__types_group.html#ga8fcb50e6e7312834791f9e237d28e873":[4,0,2,131],
"group__types_group.html#ga8fcb50e6e7312834791f9e237d28e873":[2,0,115],
+"group__types_group.html#ga8fcb50e6e7312834791f9e237d28e873":[4,0,2,131],
"group__types_group.html#ga90e8de23c4468005488bde690a2ffe9d":[4,0,2,84],
"group__types_group.html#ga90e8de23c4468005488bde690a2ffe9d":[2,0,102],
"group__types_group.html#ga9e826493769d23086cfccefe95cdf64c":[4,0,2,87],
"group__types_group.html#ga9e826493769d23086cfccefe95cdf64c":[2,0,105],
-"group__types_group.html#gaa17c5b961bcaa3c5907f48366b6e75c4":[4,0,2,75],
"group__types_group.html#gaa17c5b961bcaa3c5907f48366b6e75c4":[2,0,93],
+"group__types_group.html#gaa17c5b961bcaa3c5907f48366b6e75c4":[4,0,2,75],
"group__types_group.html#gaa889f706cce285adb9cea8aba0b76866":[4,0,2,67],
"group__types_group.html#gaa889f706cce285adb9cea8aba0b76866":[2,0,85],
"group__types_group.html#gaaf12cdd24c6cc23a57c20466c92ff8c1":[4,0,2,37],
@@ -44,18 +46,18 @@ var NAVTREEINDEX4 =
"group__types_group.html#gabcc48b40a81fe302188f4ee06ea9c54e":[2,0,50],
"group__types_group.html#gac3148248f38749f6ba70471b7a6b96e1":[4,0,2,43],
"group__types_group.html#gac3148248f38749f6ba70471b7a6b96e1":[2,0,61],
-"group__types_group.html#gac32f992fe797a1f7befc7dc3452640b6":[4,0,2,83],
"group__types_group.html#gac32f992fe797a1f7befc7dc3452640b6":[2,0,101],
+"group__types_group.html#gac32f992fe797a1f7befc7dc3452640b6":[4,0,2,83],
"group__types_group.html#gaccfaac2079656ffd40d003e4de5d2280":[4,0,2,59],
"group__types_group.html#gaccfaac2079656ffd40d003e4de5d2280":[2,0,77],
-"group__types_group.html#gace471cd2cef1df797b2a1c6b485049bd":[2,0,76],
"group__types_group.html#gace471cd2cef1df797b2a1c6b485049bd":[4,0,2,58],
+"group__types_group.html#gace471cd2cef1df797b2a1c6b485049bd":[2,0,76],
"group__types_group.html#gace9595b1a5ce3f7a13670367fd293b4a":[4,0,2,70],
"group__types_group.html#gace9595b1a5ce3f7a13670367fd293b4a":[2,0,88],
"group__types_group.html#gad00ab4381eec504ada3272aa9ff8adb2":[4,0,2,64],
"group__types_group.html#gad00ab4381eec504ada3272aa9ff8adb2":[2,0,82],
-"group__types_group.html#gad057a0107367ce5727975f3daf63ff75":[4,0,2,66],
"group__types_group.html#gad057a0107367ce5727975f3daf63ff75":[2,0,84],
+"group__types_group.html#gad057a0107367ce5727975f3daf63ff75":[4,0,2,66],
"group__types_group.html#gad29b6af20b875a1b7890ab8f0675287d":[4,0,2,34],
"group__types_group.html#gad29b6af20b875a1b7890ab8f0675287d":[2,0,52],
"group__types_group.html#gad333f1891809ea7641908e62dcc809ce":[4,0,2,65],
@@ -64,34 +66,34 @@ var NAVTREEINDEX4 =
"group__types_group.html#gad3a0dd2dac950d5709ee5772b104fc80":[2,0,98],
"group__types_group.html#gad489fb4074f27427560ca71797db6191":[4,0,2,79],
"group__types_group.html#gad489fb4074f27427560ca71797db6191":[2,0,97],
-"group__types_group.html#gadad3bf72baae970662248d82d9b05d0a":[4,0,2,63],
"group__types_group.html#gadad3bf72baae970662248d82d9b05d0a":[2,0,81],
+"group__types_group.html#gadad3bf72baae970662248d82d9b05d0a":[4,0,2,63],
"group__types_group.html#gadb76a02c18655461dbd3ee266502338c":[4,0,2,44],
"group__types_group.html#gadb76a02c18655461dbd3ee266502338c":[2,0,62],
-"group__types_group.html#gadb7c287bc86b92765fbe45a066b96f40":[4,0,2,72],
"group__types_group.html#gadb7c287bc86b92765fbe45a066b96f40":[2,0,90],
-"group__types_group.html#gadcab54026c4ed78f344ce03ce31bb61a":[4,0,2,31],
+"group__types_group.html#gadb7c287bc86b92765fbe45a066b96f40":[4,0,2,72],
"group__types_group.html#gadcab54026c4ed78f344ce03ce31bb61a":[2,0,49],
+"group__types_group.html#gadcab54026c4ed78f344ce03ce31bb61a":[4,0,2,31],
"group__types_group.html#gae4dae869fb614536f0f027c2e2660cc5":[4,0,2,88],
"group__types_group.html#gae4dae869fb614536f0f027c2e2660cc5":[2,0,106],
"group__types_group.html#gae8b57d9c40364f97a705f3e61a1156b0":[4,0,2,48],
"group__types_group.html#gae8b57d9c40364f97a705f3e61a1156b0":[2,0,66],
-"group__types_group.html#gaef6601477f6456bebc229f7f38982a6c":[2,0,58],
"group__types_group.html#gaef6601477f6456bebc229f7f38982a6c":[4,0,2,40],
-"group__types_group.html#gaf11e6664c1f335a5287af71c703935fa":[2,0,92],
+"group__types_group.html#gaef6601477f6456bebc229f7f38982a6c":[2,0,58],
"group__types_group.html#gaf11e6664c1f335a5287af71c703935fa":[4,0,2,74],
+"group__types_group.html#gaf11e6664c1f335a5287af71c703935fa":[2,0,92],
"group__types_group.html#gaf1d5e436c5d41c5b9b96d84e3d2bc86f":[4,0,2,71],
"group__types_group.html#gaf1d5e436c5d41c5b9b96d84e3d2bc86f":[2,0,89],
"group__types_group.html#gaf4d31a4dc83b2805422beafb1f8fa000":[4,0,2,56],
"group__types_group.html#gaf4d31a4dc83b2805422beafb1f8fa000":[2,0,74],
"group__types_group.html#gaf80828510450faf84bbf456e94f5b784":[4,0,2,46],
"group__types_group.html#gaf80828510450faf84bbf456e94f5b784":[2,0,64],
-"group__types_group.html#gaf88dca0a18efb5c5e994d265a9f04aec":[2,0,46],
"group__types_group.html#gaf88dca0a18efb5c5e994d265a9f04aec":[4,0,2,28],
+"group__types_group.html#gaf88dca0a18efb5c5e994d265a9f04aec":[2,0,46],
"group__types_group.html#gafd5523161ec3783e79719cb9a9a66b5b":[4,0,2,35],
"group__types_group.html#gafd5523161ec3783e79719cb9a9a66b5b":[2,0,53],
-"group__types_group.html#gga10d2999dc673ed95e131e6ce5181f720a97bd071285006dc90dc4600a25f85e89":[2,0,113,0],
"group__types_group.html#gga10d2999dc673ed95e131e6ce5181f720a97bd071285006dc90dc4600a25f85e89":[4,0,2,129,0],
+"group__types_group.html#gga10d2999dc673ed95e131e6ce5181f720a97bd071285006dc90dc4600a25f85e89":[2,0,113,0],
"group__types_group.html#gga10d2999dc673ed95e131e6ce5181f720afab4e3a974823f4438292b2405349d4a":[2,0,113,1],
"group__types_group.html#gga10d2999dc673ed95e131e6ce5181f720afab4e3a974823f4438292b2405349d4a":[4,0,2,129,1],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818a06299d9c8262a16306ba6cc16d293c5e":[4,0,2,130,3],
@@ -100,42 +102,42 @@ var NAVTREEINDEX4 =
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818a33317133d42f21bf5919827a691543f6":[2,0,114,4],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818a82b8d36e17391212398984f92db9c381":[4,0,2,130,2],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818a82b8d36e17391212398984f92db9c381":[2,0,114,2],
-"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818abb50ebcd2fbafe27038c966121b9407b":[2,0,114,5],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818abb50ebcd2fbafe27038c966121b9407b":[4,0,2,130,5],
+"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818abb50ebcd2fbafe27038c966121b9407b":[2,0,114,5],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818abbd81d6c4e0f17f30e2186f1335e991d":[4,0,2,130,1],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818abbd81d6c4e0f17f30e2186f1335e991d":[2,0,114,1],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818ac692ba1363103768ac4bb58695549758":[4,0,2,130,0],
"group__types_group.html#gga117ed2c35f89ef3144540ed9cbadc818ac692ba1363103768ac4bb58695549758":[2,0,114,0],
"group__types_group.html#gga1802a53c79e667f093bba033b16adc98a1d9dad1854cf374b22e3688b98284dec":[4,0,2,128,0],
"group__types_group.html#gga1802a53c79e667f093bba033b16adc98a1d9dad1854cf374b22e3688b98284dec":[2,0,112,0],
-"group__types_group.html#gga1802a53c79e667f093bba033b16adc98a428ed10448726ad01c1db77a7f748314":[2,0,112,1],
"group__types_group.html#gga1802a53c79e667f093bba033b16adc98a428ed10448726ad01c1db77a7f748314":[4,0,2,128,1],
+"group__types_group.html#gga1802a53c79e667f093bba033b16adc98a428ed10448726ad01c1db77a7f748314":[2,0,112,1],
"group__types_group.html#gga410f8fb053efa02b2ca1de0c02fa4b6da6a2aa02f32acec6526d81f6e974e690f":[4,0,2,126,0],
"group__types_group.html#gga410f8fb053efa02b2ca1de0c02fa4b6da6a2aa02f32acec6526d81f6e974e690f":[2,0,110,0],
"group__types_group.html#gga410f8fb053efa02b2ca1de0c02fa4b6dae874de4a787cfbec4c6d0eb1a3f05ebd":[4,0,2,126,1],
"group__types_group.html#gga410f8fb053efa02b2ca1de0c02fa4b6dae874de4a787cfbec4c6d0eb1a3f05ebd":[2,0,110,1],
-"group__types_group.html#gga410f8fb053efa02b2ca1de0c02fa4b6daf7e6581e69572691b01d1294a3c3a478":[2,0,110,2],
"group__types_group.html#gga410f8fb053efa02b2ca1de0c02fa4b6daf7e6581e69572691b01d1294a3c3a478":[4,0,2,126,2],
-"group__types_group.html#gga7f88b7d482488398074f9d1419a9b8c2a99d7f2d740af26c340c0a4e2b72fb6ab":[2,0,111,1],
+"group__types_group.html#gga410f8fb053efa02b2ca1de0c02fa4b6daf7e6581e69572691b01d1294a3c3a478":[2,0,110,2],
"group__types_group.html#gga7f88b7d482488398074f9d1419a9b8c2a99d7f2d740af26c340c0a4e2b72fb6ab":[4,0,2,127,1],
+"group__types_group.html#gga7f88b7d482488398074f9d1419a9b8c2a99d7f2d740af26c340c0a4e2b72fb6ab":[2,0,111,1],
"group__types_group.html#gga7f88b7d482488398074f9d1419a9b8c2abb31b828421634f1e6a1ef9359bc91f6":[4,0,2,127,0],
"group__types_group.html#gga7f88b7d482488398074f9d1419a9b8c2abb31b828421634f1e6a1ef9359bc91f6":[2,0,111,0],
-"group__types_group.html#gga8650faf52b0b6b23df376eebeb9d0354a2c4a1e2b75f31dd69a89b541d75afa44":[2,0,116,0],
"group__types_group.html#gga8650faf52b0b6b23df376eebeb9d0354a2c4a1e2b75f31dd69a89b541d75afa44":[4,0,2,132,0],
-"group__types_group.html#gga8650faf52b0b6b23df376eebeb9d0354a6ee3851dac5c90a61492193dd55931f5":[2,0,116,1],
+"group__types_group.html#gga8650faf52b0b6b23df376eebeb9d0354a2c4a1e2b75f31dd69a89b541d75afa44":[2,0,116,0],
"group__types_group.html#gga8650faf52b0b6b23df376eebeb9d0354a6ee3851dac5c90a61492193dd55931f5":[4,0,2,132,1],
-"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332a0b7a6bef67e4220f5f0c4075f2ed16b6":[4,0,2,133,0],
+"group__types_group.html#gga8650faf52b0b6b23df376eebeb9d0354a6ee3851dac5c90a61492193dd55931f5":[2,0,116,1],
"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332a0b7a6bef67e4220f5f0c4075f2ed16b6":[2,0,117,0],
-"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332a4efb91331f3307128c75af5b23362f83":[2,0,117,2],
+"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332a0b7a6bef67e4220f5f0c4075f2ed16b6":[4,0,2,133,0],
"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332a4efb91331f3307128c75af5b23362f83":[4,0,2,133,2],
-"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332acc0e1da3c292cb7eb19d909c9dfd788a":[4,0,2,133,1],
+"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332a4efb91331f3307128c75af5b23362f83":[2,0,117,2],
"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332acc0e1da3c292cb7eb19d909c9dfd788a":[2,0,117,1],
+"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332acc0e1da3c292cb7eb19d909c9dfd788a":[4,0,2,133,1],
"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332aee19ab8144bf518e251ea2004309b657":[4,0,2,133,3],
"group__types_group.html#gga89db3bd6bf11af3ac5eb3ab560d16332aee19ab8144bf518e251ea2004309b657":[2,0,117,3],
-"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873a02d46a6395933c55c95ee5194bb6b80e":[2,0,115,0],
"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873a02d46a6395933c55c95ee5194bb6b80e":[4,0,2,131,0],
-"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873a1232af28bf4e4b82e962174f1432ed4a":[2,0,115,2],
+"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873a02d46a6395933c55c95ee5194bb6b80e":[2,0,115,0],
"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873a1232af28bf4e4b82e962174f1432ed4a":[4,0,2,131,2],
+"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873a1232af28bf4e4b82e962174f1432ed4a":[2,0,115,2],
"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873afd91fe31cf57c68863ca3090b07c296c":[4,0,2,131,1],
"group__types_group.html#gga8fcb50e6e7312834791f9e237d28e873afd91fe31cf57c68863ca3090b07c296c":[2,0,115,1],
"group__wildcards_group.html":[2,4],
@@ -247,7 +249,5 @@ var NAVTREEINDEX4 =
"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a99265bcfa283741c3711337dac6718f0":[4,0,3,2,5],
"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a9bd3f4f7a2eca1f1ed49cc0499cb9c78":[4,0,3,2,106],
"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a9c1c31813a713fcee44ec06728cc6382":[4,0,3,2,112],
-"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a9d9319d172e0a8147949bf40f1b29f28":[4,0,3,2,16],
-"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a9eef13e3281a879f36a30e246fb6021b":[4,0,3,2,12],
-"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70aa023de74e8bedf88c2f5e4b21e62ea4b":[4,0,3,2,39]
+"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a9d9319d172e0a8147949bf40f1b29f28":[4,0,3,2,16]
};
diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js
index ce10be2c2..f0a1ad23d 100644
--- a/doc/html/navtreeindex5.js
+++ b/doc/html/navtreeindex5.js
@@ -1,5 +1,7 @@
var NAVTREEINDEX5 =
{
+"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70a9eef13e3281a879f36a30e246fb6021b":[4,0,3,2,12],
+"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70aa023de74e8bedf88c2f5e4b21e62ea4b":[4,0,3,2,39],
"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70aa0ca5a2e539cec9d33f433f28f2780fe":[4,0,3,2,100],
"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70aa0eb191886a17e917f2fa0eaa81d4b61":[4,0,3,2,116],
"status_8h.html#a10731415ffcd3e2330df10c4d5fd3d70aa1242d9e6509f08c01c3373d0e66dc96":[4,0,3,2,109],
@@ -247,7 +249,5 @@ var NAVTREEINDEX5 =
"structjs_options_1_1js_options_stream.html":[2,0,40,2],
"structjs_options_1_1js_options_stream.html#a2ca89c298b4df1f5e3e0a44e205c789c":[2,0,40,2,3],
"structjs_options_1_1js_options_stream.html#afe680264223b434ca6959f9e122af029":[2,0,40,2,2],
-"structjs_options_1_1js_options_stream_1_1js_options_stream_info.html":[2,0,40,2,0],
-"structjs_options_1_1js_options_stream_1_1js_options_stream_info.html#a73f847afe18f56eaaf6788900270bef7":[2,0,40,2,0,0],
-"structjs_options_1_1js_options_stream_1_1js_options_stream_info.html#af874e0f5aa15fb2a41504631ed786e6d":[2,0,40,2,0,1]
+"structjs_options_1_1js_options_stream_1_1js_options_stream_info.html":[2,0,40,2,0]
};
diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js
index c8e29bcc4..900441259 100644
--- a/doc/html/navtreeindex6.js
+++ b/doc/html/navtreeindex6.js
@@ -1,5 +1,7 @@
var NAVTREEINDEX6 =
{
+"structjs_options_1_1js_options_stream_1_1js_options_stream_info.html#a73f847afe18f56eaaf6788900270bef7":[2,0,40,2,0,0],
+"structjs_options_1_1js_options_stream_1_1js_options_stream_info.html#af874e0f5aa15fb2a41504631ed786e6d":[2,0,40,2,0,1],
"structjs_options_1_1js_options_stream_1_1js_options_stream_purge.html":[2,0,40,2,1],
"structjs_options_1_1js_options_stream_1_1js_options_stream_purge.html#a0d61e5d3c9c518f455549086ababe7f6":[2,0,40,2,1,1],
"structjs_options_1_1js_options_stream_1_1js_options_stream_purge.html#a882c1ce1e636817450893caa72aa4eda":[2,0,40,2,1,2],
@@ -179,6 +181,7 @@ var NAVTREEINDEX6 =
"structkv_watch_options.html#a0535edd21b26affc0057575bafc21a07":[2,0,42,0],
"structkv_watch_options.html#a08274f08ae96e14d9ded326e4e665649":[2,0,42,1],
"structkv_watch_options.html#a56183d56585697d058c7eeb20bdddb66":[2,0,42,3],
+"structkv_watch_options.html#a82cd6bcb7167e7f798b6f912c1fa29c9":[2,0,42,4],
"structkv_watch_options.html#ac9094bce4f3c6513431ba32fb49e5605":[2,0,42,2],
"structmicro__endpoint__config__s.html":[2,3,2,0],
"structmicro__endpoint__config__s.html#a1a47fe3be59a271217bcb4341cddecae":[2,3,2,0,0],
diff --git a/doc/html/pages.html b/doc/html/pages.html
index 290dcfd2e..ffb922094 100644
--- a/doc/html/pages.html
+++ b/doc/html/pages.html
@@ -26,7 +26,7 @@