Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateTableMonitor.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
43  {
44 
82  public struct Options
83  {
84 
113  public const string EVENT = "event";
114 
117  public const string INSERT = "insert";
118 
122  public const string UPDATE = "update";
123 
127  public const string DELETE = "delete";
128  } // end struct Options
129 
130 
133  public string table_name { get; set; }
134 
170  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
171 
172 
176 
219  IDictionary<string, string> options = null)
220  {
221  this.table_name = table_name ?? "";
222  this.options = options ?? new Dictionary<string, string>();
223  } // end constructor
224 
225  } // end class CreateTableMonitorRequest
226 
227 
228 
233  {
234 
237  public string topic_id { get; set; }
238 
241  public string table_name { get; set; }
242 
245  public string type_schema { get; set; }
246 
248  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
249 
250  } // end class CreateTableMonitorResponse
251 
252 
253 
254 
255 } // end namespace kinetica
CreateTableMonitorRequest(string table_name, IDictionary< string, string > options=null)
Constructs a CreateTableMonitorRequest object with the specified parameters.
A set of results returned by Kinetica.createTableMonitor(string,IDictionary{string, string}).
A set of parameters for Kinetica.createTableMonitor(string,IDictionary{string, string}).
const string EVENT
Type of modification event on the target table to be monitored by this table monitor.
CreateTableMonitorRequest()
Constructs a CreateTableMonitorRequest object with default parameters.
const string DELETE
Get notifications of delete operations.
const string INSERT
Get notifications of new record insertions.
IDictionary< string, string > options
Optional parameters.
string topic_id
The ZMQ topic ID to subscribe to for inserted records.
string table_name
Name of the table to monitor.
const string UPDATE
Get notifications of update operations.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
string type_schema
JSON Avro schema of the table, for use in decoding published records.