/* * Copyright 2013 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "mongoc-prelude.h" #ifndef MONGOC_WRITE_CONCERN_H #define MONGOC_WRITE_CONCERN_H #include #include "mongoc-macros.h" BSON_BEGIN_DECLS #define MONGOC_WRITE_CONCERN_W_UNACKNOWLEDGED 0 #define MONGOC_WRITE_CONCERN_W_ERRORS_IGNORED -1 /* deprecated */ #define MONGOC_WRITE_CONCERN_W_DEFAULT -2 #define MONGOC_WRITE_CONCERN_W_MAJORITY -3 #define MONGOC_WRITE_CONCERN_W_TAG -4 typedef struct _mongoc_write_concern_t mongoc_write_concern_t; MONGOC_EXPORT (mongoc_write_concern_t *) mongoc_write_concern_new (void) BSON_GNUC_WARN_UNUSED_RESULT; MONGOC_EXPORT (mongoc_write_concern_t *) mongoc_write_concern_copy (const mongoc_write_concern_t *write_concern) BSON_GNUC_WARN_UNUSED_RESULT; MONGOC_EXPORT (void) mongoc_write_concern_destroy (mongoc_write_concern_t *write_concern); MONGOC_EXPORT (bool) mongoc_write_concern_get_fsync (const mongoc_write_concern_t *write_concern) BSON_GNUC_DEPRECATED; MONGOC_EXPORT (void) mongoc_write_concern_set_fsync (mongoc_write_concern_t *write_concern, bool fsync_) BSON_GNUC_DEPRECATED; MONGOC_EXPORT (bool) mongoc_write_concern_get_journal (const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (bool) mongoc_write_concern_journal_is_set ( const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (void) mongoc_write_concern_set_journal (mongoc_write_concern_t *write_concern, bool journal); MONGOC_EXPORT (int32_t) mongoc_write_concern_get_w (const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (void) mongoc_write_concern_set_w (mongoc_write_concern_t *write_concern, int32_t w); MONGOC_EXPORT (const char *) mongoc_write_concern_get_wtag (const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (void) mongoc_write_concern_set_wtag (mongoc_write_concern_t *write_concern, const char *tag); MONGOC_EXPORT (int32_t) mongoc_write_concern_get_wtimeout (const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (int64_t) mongoc_write_concern_get_wtimeout_int64 ( const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (void) mongoc_write_concern_set_wtimeout (mongoc_write_concern_t *write_concern, int32_t wtimeout_msec); MONGOC_EXPORT (void) mongoc_write_concern_set_wtimeout_int64 (mongoc_write_concern_t *write_concern, int64_t wtimeout_msec); MONGOC_EXPORT (bool) mongoc_write_concern_get_wmajority ( const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (void) mongoc_write_concern_set_wmajority (mongoc_write_concern_t *write_concern, int32_t wtimeout_msec); MONGOC_EXPORT (bool) mongoc_write_concern_is_acknowledged ( const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (bool) mongoc_write_concern_is_valid (const mongoc_write_concern_t *write_concern); MONGOC_EXPORT (bool) mongoc_write_concern_append (mongoc_write_concern_t *write_concern, bson_t *doc); MONGOC_EXPORT (bool) mongoc_write_concern_is_default (const mongoc_write_concern_t *write_concern); BSON_END_DECLS #endif /* MONGOC_WRITE_CONCERN_H */