bson_reinit (3) - Linux Manuals
bson_reinit: The bson_reinit() function shall be equivalent to calling bson_destroy() and bson_init().
Command to display bson_reinit
manual in Linux: $ man 3 bson_reinit
NAME
bson_reinit() - The bson_reinit() function shall be equivalent to calling bson_destroy() and bson_init().
SYNOPSIS
void
bson_reinit (bson_t *b);
PARAMETERS
- b
-
A
bson_t
\&.
DESCRIPTION
The
bson_reinit(3)
function shall be equivalent to calling
bson_destroy(3)
and
bson_init(3)
\&.
However, if the
bson_t
structure contains a malloc()'d buffer, it may be reused. To be certain that any buffer is freed, always call
bson_destroy
on any
bson_t
structure, whether initialized or reinitialized, after its final use.
COLOPHON
This page is part of libbson.
Please report any bugs at
https://jira.mongodb.org/browse/CDRIVER.
Pages related to bson_reinit
- bson_reader_destroy (3) - Destroys and releases all resources associated with reader.
- bson_reader_destroy_func_t (3) - An optional callback function that will be called when a bson_reader_t created with bson_reader_new_from_handle is destroyed with bson_reader_destroy().
- bson_reader_new_from_data (3) - The bson_reader_new_from_data() function shall create a new bson_reader_t using the buffer supplied. data is not copied and MUST be valid for the lifetime of the resulting bson_reader_t.
- bson_reader_new_from_fd (3) - The bson_reader_new_from_fd() function shall create a new bson_reader_t that will read from the provided file-descriptor.
- bson_reader_new_from_file (3) - Creates a new bson_reader_t using the file denoted by filename.
- bson_reader_new_from_handle (3) - This function allows for a pluggable data stream for the reader. This can be used to read from sockets, files, memory, or other arbitrary sources.
- bson_reader_read (3) - The bson_reader_read() function shall read the next document from the underlying file-descriptor or buffer.
- bson_reader_read_func_t (3) - A callback function that will be called by bson_reader_t to read the next chunk of data from the underlying opaque file descriptor.
- bson_reader_set_destroy_func (3) - Allows for setting a callback to be executed when a reader is destroyed. This should only be used by implementations implementing their own read callbacks.
- bson_reader_set_read_func (3) - Sets the function to read more data from the underlying stream in a custom bson_reader_t.
- bson_reader_t (3) - Streaming BSON Document Reader