1/*
2 * meta_batch.c
3 *
4 * Copyright (C) 2017-2018 Aerospike, Inc.
5 *
6 * Portions may be licensed to Aerospike, Inc. under one or more contributor
7 * license agreements.
8 *
9 * This program is free software: you can redistribute it and/or modify it under
10 * the terms of the GNU Affero General Public License as published by the Free
11 * Software Foundation, either version 3 of the License, or (at your option) any
12 * later version.
13 *
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see http://www.gnu.org/licenses/
21 */
22
23//==========================================================
24// Includes.
25//
26
27#include "fabric/meta_batch.h"
28
29#include <stddef.h>
30
31
32//==========================================================
33// Public API.
34//
35
36struct meta_in_q_s *
37meta_in_q_create()
38{
39 return NULL;
40}
41
42
43void
44meta_in_q_destroy(struct meta_in_q_s *iq)
45{
46}
47
48
49void
50meta_in_q_rejected(struct meta_in_q_s *iq)
51{
52}
53
54
55struct meta_out_q_s *
56meta_out_q_create()
57{
58 return NULL;
59}
60
61
62void
63meta_out_q_destroy(struct meta_out_q_s *oq)
64{
65}
66