Couchbase C Client
3.2.0
Asynchronous C Client for Couchbase
|
Manipulate the numeric content of a document.
Counter operations treat the document being accessed as a numeric value (the document should contain a parseable integer as its content). This value may then be incremented or decremented.
Functions | |
lcb_STATUS | lcb_respcounter_status (const lcb_RESPCOUNTER *resp) |
lcb_STATUS | lcb_respcounter_error_context (const lcb_RESPCOUNTER *resp, const lcb_KEY_VALUE_ERROR_CONTEXT **ctx) |
lcb_STATUS | lcb_respcounter_cookie (const lcb_RESPCOUNTER *resp, void **cookie) |
lcb_STATUS | lcb_respcounter_cas (const lcb_RESPCOUNTER *resp, uint64_t *cas) |
lcb_STATUS | lcb_respcounter_key (const lcb_RESPCOUNTER *resp, const char **key, size_t *key_len) |
lcb_STATUS | lcb_respcounter_mutation_token (const lcb_RESPCOUNTER *resp, lcb_MUTATION_TOKEN *token) |
lcb_STATUS | lcb_respcounter_value (const lcb_RESPCOUNTER *resp, uint64_t *value) |
lcb_STATUS | lcb_cmdcounter_create (lcb_CMDCOUNTER **cmd) |
lcb_STATUS | lcb_cmdcounter_destroy (lcb_CMDCOUNTER *cmd) |
lcb_STATUS | lcb_cmdcounter_parent_span (lcb_CMDCOUNTER *cmd, lcbtrace_SPAN *span) |
lcb_STATUS | lcb_cmdcounter_collection (lcb_CMDCOUNTER *cmd, const char *scope, size_t scope_len, const char *collection, size_t collection_len) |
lcb_STATUS | lcb_cmdcounter_key (lcb_CMDCOUNTER *cmd, const char *key, size_t key_len) |
lcb_STATUS | lcb_cmdcounter_expiry (lcb_CMDCOUNTER *cmd, uint32_t expiration) |
lcb_STATUS | lcb_cmdcounter_delta (lcb_CMDCOUNTER *cmd, int64_t number) |
lcb_STATUS | lcb_cmdcounter_initial (lcb_CMDCOUNTER *cmd, uint64_t number) |
lcb_STATUS | lcb_cmdcounter_durability (lcb_CMDCOUNTER *cmd, lcb_DURABILITY_LEVEL level) |
LCB_DEPRECATED2 (1 lcb_STATUS lcb_cmdcounter_cas(lcb_CMDCOUNTER *cmd, uint64_t cas), "CAS is not applicable to arithmetic operations") | |
lcb_STATUS | lcb_cmdcounter_timeout (lcb_CMDCOUNTER *cmd, uint32_t timeout) |
lcb_STATUS | lcb_counter (lcb_INSTANCE *instance, void *cookie, const lcb_CMDCOUNTER *cmd) |
Typedefs | |
typedef struct lcb_RESPCOUNTER_ | lcb_RESPCOUNTER |
Schedule single counter operation. More... | |
typedef struct lcb_CMDCOUNTER_ | lcb_CMDCOUNTER |
typedef struct lcb_RESPCOUNTER_ lcb_RESPCOUNTER |
Schedule single counter operation.
instance | the instance |
cookie | the pointer to associate with the request |
cmd | the command to use |