Couchbase C Client  3.3.12
Asynchronous C Client for Couchbase
libuv_io_opts.h
Go to the documentation of this file.
1/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright 2013-2020 Couchbase, Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
70#ifndef LCB_PLUGIN_UV_H
71#define LCB_PLUGIN_UV_H
72#ifdef __cplusplus
73extern "C" {
74#endif
75
77#include <uv.h>
78
79#ifdef LCBUV_EMBEDDED_SOURCE
80#define LCBUV_API
81#else
82#define LCBUV_API LIBCOUCHBASE_API
83#endif
84
88typedef struct lcbuv_options_st {
89 int version;
90 union {
91 struct {
93 uv_loop_t *loop;
94
96 int startsop_noop;
97 } v0;
98 } v;
100
108LCBUV_API
109lcb_STATUS lcb_create_libuv_io_opts(int version, lcb_io_opt_t *io, lcbuv_options_t *options);
110
111#ifdef __cplusplus
112}
113#endif
114#endif
115
Main header file for Couchbase.
lcb_STATUS
Error codes returned by the library.
Definition error.h:212
LCBUV_API lcb_STATUS lcb_create_libuv_io_opts(int version, lcb_io_opt_t *io, lcbuv_options_t *options)
Use this if using an existing uv_loop_t.
Options passed to the iops constructure.
Definition libuv_io_opts.h:88