treedb_close_topic()

treedb_close_topic()#

Closes the specified topic in the TreeDB system, ensuring that all associated resources are properly released.

Prototype

int treedb_close_topic(
    json_t  *tranger,
    const char  *treedb_name,
    const char  *topic_name
);

Parameters

Key

Type

Description

tranger

json_t *

Pointer to the tranger instance managing the TreeDB.

treedb_name

const char *

Name of the TreeDB containing the topic to be closed.

topic_name

const char *

Name of the topic to be closed.


Return Value

Returns 0 on success, or a negative error code if the operation fails.

Notes

Ensure that the topic is not in use before calling treedb_close_topic().

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples