Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.createTableMonitor. More...
Classes | |
struct | Options |
A set of string constants for the parameter options. More... | |
Public Member Functions | |
CreateTableMonitorRequest () | |
Constructs a CreateTableMonitorRequest object with default parameters. More... | |
CreateTableMonitorRequest (string table_name, IDictionary< string, string > options=null) | |
Constructs a CreateTableMonitorRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | table_name [get, set] |
Name of the table to monitor, in [schema_name. More... | |
IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.createTableMonitor.
Creates a monitor that watches for a single table modification event type (insert, update, or delete) on a particular table (identified by table_name) and forwards event notifications to subscribers via ZMQ. After this call completes, subscribe to the returned topic_id on the ZMQ table monitor port (default 9002). Each time an operation of the given type on the table completes, a multipart message is published for that topic; the first part contains only the topic ID, and each subsequent part contains one binary-encoded Avro object that corresponds to the event and can be decoded using type_schema. The monitor will continue to run (regardless of whether or not there are any subscribers) until deactivated with Kinetica.clearTableMonitor.
For more information on table monitors, see Table Monitors.
Definition at line 32 of file CreateTableMonitor.cs.
|
inline |
Constructs a CreateTableMonitorRequest object with default parameters.
Definition at line 285 of file CreateTableMonitor.cs.
|
inline |
Constructs a CreateTableMonitorRequest object with the specified parameters.
table_name | Name of the table to monitor, in [schema_name.]table_name format, using standard name resolution rules. |
options | Optional parameters.
|
Definition at line 415 of file CreateTableMonitor.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 281 of file CreateTableMonitor.cs.
|
getset |
Name of the table to monitor, in [schema_name.
]table_name format, using standard name resolution rules.
Definition at line 158 of file CreateTableMonitor.cs.