1MONGOC_URI_GET_OPTION_AS_INT64(3) libmongoc MONGOC_URI_GET_OPTION_AS_INT64(3)
2
3
4
6 mongoc_uri_get_option_as_int64 - mongoc_uri_get_option_as_int64()
7
9 int64_t
10 mongoc_uri_get_option_as_int64 (const mongoc_uri_t *uri,
11 const char *option,
12 int64_t fallback);
13
15 • uri: A mongoc_uri_t.
16
17 • option: The name of an option, case insensitive.
18
19 • fallback: A default value to return.
20
22 Returns the value of the URI option if it is set and of the correct
23 type (integer). Returns fallback if the option is not set, set to an
24 invalid type, or zero.
25
26 Zero is considered "unset", so URIs can be constructed like so, and
27 still accept default values:
28
29 bson_strdup_printf ("mongodb://localhost/?wTimeoutMS=%" PRId64, myvalue)
30
31 If myvalue is non-zero it is the write concern timeout; if it is zero
32 the driver uses the default timeout.
33
35 • mongoc_uri_get_option_as_int32()
36
38 MongoDB, Inc
39
41 2017-present, MongoDB, Inc
42
43
44
45
461.17.6 Jun 03, 2021MONGOC_URI_GET_OPTION_AS_INT64(3)