Skip to main content

◆ dropDatasink() [1/2]

DropDatasinkResponse kinetica.Kinetica.dropDatasink (DropDatasinkRequestrequest_)
inline

Drops an existing data sink.

By default, if any table monitors use this sink as a destination, the request will be blocked unless option CLEAR_TABLE_MONITORS is TRUE.

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

Definition at line 33120 of file KineticaFunctions.cs.

◆ dropDatasink() [2/2]

DropDatasinkResponse kinetica.Kinetica.dropDatasink (stringname,
IDictionary< string, string >options = null )
inline

Drops an existing data sink.

By default, if any table monitors use this sink as a destination, the request will be blocked unless option CLEAR_TABLE_MONITORS is TRUE.

Parameters
nameName of the data sink to be dropped. Must be an existing data sink.
optionsOptional parameters.The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 33194 of file KineticaFunctions.cs.

◆ DropDatasinkAsync() [1/2]

async System.Threading.Tasks.Task< DropDatasinkResponse > kinetica.Kinetica.DropDatasinkAsync (DropDatasinkRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Drops an existing data sink.

(async)

By default, if any table monitors use this sink as a destination, the request will be blocked unless option CLEAR_TABLE_MONITORS is TRUE.

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 33143 of file KineticaFunctions.cs.

◆ DropDatasinkAsync() [2/2]

async System.Threading.Tasks.Task< DropDatasinkResponse > kinetica.Kinetica.DropDatasinkAsync (stringname,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Drops an existing data sink.

(async)

By default, if any table monitors use this sink as a destination, the request will be blocked unless option CLEAR_TABLE_MONITORS is TRUE.

Parameters
nameName of the data sink to be dropped. Must be an existing data sink.
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 33245 of file KineticaFunctions.cs.