GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
clear_table_monitor.h
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the GPUdb schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 #ifndef __CLEAR_TABLE_MONITOR_H__
7 #define __CLEAR_TABLE_MONITOR_H__
8 
9 namespace gpudb
10 {
11 
20  {
21 
27  topicId(std::string()),
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
40  ClearTableMonitorRequest(const std::string& topicId_, const std::map<std::string, std::string>& options_):
41  topicId( topicId_ ),
42  options( options_ )
43  {
44  }
45 
46  std::string topicId;
47  std::map<std::string, std::string> options;
48  };
49 }
50 
51 namespace avro
52 {
53  template<> struct codec_traits<gpudb::ClearTableMonitorRequest>
54  {
55  static void encode(Encoder& e, const gpudb::ClearTableMonitorRequest& v)
56  {
57  ::avro::encode(e, v.topicId);
58  ::avro::encode(e, v.options);
59  }
60 
61  static void decode(Decoder& d, gpudb::ClearTableMonitorRequest& v)
62  {
63  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
64  {
65  const std::vector<size_t> fo = rd->fieldOrder();
66 
67  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
68  {
69  switch (*it)
70  {
71  case 0:
72  ::avro::decode(d, v.topicId);
73  break;
74 
75  case 1:
76  ::avro::decode(d, v.options);
77  break;
78 
79  default:
80  break;
81  }
82  }
83  }
84  else
85  {
86  ::avro::decode(d, v.topicId);
87  ::avro::decode(d, v.options);
88  }
89  }
90  };
91 }
92 
93 namespace gpudb
94 {
95 
104  {
105 
111  topicId(std::string()),
112  info(std::map<std::string, std::string>())
113  {
114  }
115 
116  std::string topicId;
117  std::map<std::string, std::string> info;
118  };
119 }
120 
121 namespace avro
122 {
123  template<> struct codec_traits<gpudb::ClearTableMonitorResponse>
124  {
125  static void encode(Encoder& e, const gpudb::ClearTableMonitorResponse& v)
126  {
127  ::avro::encode(e, v.topicId);
128  ::avro::encode(e, v.info);
129  }
130 
131  static void decode(Decoder& d, gpudb::ClearTableMonitorResponse& v)
132  {
133  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
134  {
135  const std::vector<size_t> fo = rd->fieldOrder();
136 
137  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
138  {
139  switch (*it)
140  {
141  case 0:
142  ::avro::decode(d, v.topicId);
143  break;
144 
145  case 1:
146  ::avro::decode(d, v.info);
147  break;
148 
149  default:
150  break;
151  }
152  }
153  }
154  else
155  {
156  ::avro::decode(d, v.topicId);
157  ::avro::decode(d, v.info);
158  }
159  }
160  };
161 }
162 
163 #endif
std::map< std::string, std::string > info
std::map< std::string, std::string > options
A set of output parameters for const.
ClearTableMonitorRequest()
Constructs a ClearTableMonitorRequest object with default parameter values.
ClearTableMonitorRequest(const std::string &topicId_, const std::map< std::string, std::string > &options_)
Constructs a ClearTableMonitorRequest object with the specified parameters.
A set of input parameters for const.
ClearTableMonitorResponse()
Constructs a ClearTableMonitorResponse object with default parameter values.