Skip to main content

◆ alterTableMonitor() [1/2]

AlterTableMonitorResponse kinetica.Kinetica.alterTableMonitor (AlterTableMonitorRequestrequest_)
inline

Alters a table monitor previously created with createTableMonitor.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 14328 of file KineticaFunctions.cs.

◆ alterTableMonitor() [2/2]

AlterTableMonitorResponse kinetica.Kinetica.alterTableMonitor (stringtopic_id,
IDictionary< string, string >monitor_updates_map,
IDictionary< string, string >options = null )
inline

Alters a table monitor previously created with createTableMonitor.

Parameters
topic_idThe topic ID returned by createTableMonitor.
monitor_updates_mapMap containing the properties of the table monitor to be updated. Error if empty.
  • SCHEMA_NAME: Updates the schema name. If SCHEMA_NAME doesn’t exist, an error will be thrown. If SCHEMA_NAME is empty, then the user’s default schema will be used.
  • MAX_CONSECUTIVE_FAILURES: Updates the maximum number of consecutive failures before suspending the stream. A value of ‘-1’ to disables auto-suspend. This value is by rank and not overall.
  • NOTIFICATIONS: Updates the state of the monitor. Supported values:The default value is an empty Dictionary.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 14408 of file KineticaFunctions.cs.

◆ AlterTableMonitorAsync() [1/2]

async System.Threading.Tasks.Task< AlterTableMonitorResponse > kinetica.Kinetica.AlterTableMonitorAsync (AlterTableMonitorRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Alters a table monitor previously created with createTableMonitor.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 14345 of file KineticaFunctions.cs.

◆ AlterTableMonitorAsync() [2/2]

async System.Threading.Tasks.Task< AlterTableMonitorResponse > kinetica.Kinetica.AlterTableMonitorAsync (stringtopic_id,
IDictionary< string, string >monitor_updates_map,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Alters a table monitor previously created with createTableMonitor.

(async)

Parameters
topic_idThe topic ID returned by createTableMonitor.
monitor_updates_mapMap containing the properties of the table monitor to be updated. Error if empty.
  • SCHEMA_NAME: Updates the schema name. If SCHEMA_NAME doesn’t exist, an error will be thrown. If SCHEMA_NAME is empty, then the user’s default schema will be used.
  • MAX_CONSECUTIVE_FAILURES: Updates the maximum number of consecutive failures before suspending the stream. A value of ‘-1’ to disables auto-suspend. This value is by rank and not overall.
  • NOTIFICATIONS: Updates the state of the monitor. Supported values:The default value is an empty Dictionary.
optionsOptional parameters. The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 14474 of file KineticaFunctions.cs.