Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
kinetica.CreateTableMonitorRequest.Options Struct Reference

Optional parameters. More...

Public Attributes

const string EVENT = "event"
 Type of modification event on the target table to be monitored by this table monitor. More...
 
const string INSERT = "insert"
 Get notifications of new record insertions. More...
 
const string UPDATE = "update"
 Get notifications of update operations. More...
 
const string DELETE = "delete"
 Get notifications of delete operations. More...
 

Detailed Description

Optional parameters.

  • EVENT: Type of modification event on the target table to be monitored by this table monitor. Supported values:
    • INSERT: Get notifications of new record insertions. The new row images are forwarded to the subscribers.
    • UPDATE: Get notifications of update operations. The modified row count information is forwarded to the subscribers.
    • DELETE: Get notifications of delete operations. The deleted row count information is forwarded to the subscribers.
    The default value is INSERT.

The default value is an empty Dictionary. A set of string constants for the parameter options.

Definition at line 82 of file CreateTableMonitor.cs.

Member Data Documentation

const string kinetica.CreateTableMonitorRequest.Options.DELETE = "delete"

Get notifications of delete operations.

The deleted row count information is forwarded to the subscribers.

Definition at line 127 of file CreateTableMonitor.cs.

const string kinetica.CreateTableMonitorRequest.Options.EVENT = "event"

Type of modification event on the target table to be monitored by this table monitor.

Supported values:

  • INSERT: Get notifications of new record insertions. The new row images are forwarded to the subscribers.
  • UPDATE: Get notifications of update operations. The modified row count information is forwarded to the subscribers.
  • DELETE: Get notifications of delete operations. The deleted row count information is forwarded to the subscribers.

The default value is INSERT.

Definition at line 113 of file CreateTableMonitor.cs.

const string kinetica.CreateTableMonitorRequest.Options.INSERT = "insert"

Get notifications of new record insertions.

The new row images are forwarded to the subscribers.

Definition at line 117 of file CreateTableMonitor.cs.

const string kinetica.CreateTableMonitorRequest.Options.UPDATE = "update"

Get notifications of update operations.

The modified row count information is forwarded to the subscribers.

Definition at line 122 of file CreateTableMonitor.cs.


The documentation for this struct was generated from the following file: