Skip to main content

◆ deleteProc() [1/2]

DeleteProcResponse kinetica.Kinetica.deleteProc (DeleteProcRequestrequest_)
inline

Deletes a proc.

Any currently running instances of the proc will be killed.

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

Definition at line 31944 of file KineticaFunctions.cs.

◆ deleteProc() [2/2]

DeleteProcResponse kinetica.Kinetica.deleteProc (stringproc_name,
IDictionary< string, string >options = null )
inline

Deletes a proc.

Any currently running instances of the proc will be killed.

Parameters
proc_nameName of the proc to be deleted. Must be the name of a currently existing proc.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 31979 of file KineticaFunctions.cs.

◆ DeleteProcAsync() [1/2]

async System.Threading.Tasks.Task< DeleteProcResponse > kinetica.Kinetica.DeleteProcAsync (DeleteProcRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes a proc.

(async)

Any currently running instances of the proc will be killed.

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

◆ DeleteProcAsync() [2/2]

async System.Threading.Tasks.Task< DeleteProcResponse > kinetica.Kinetica.DeleteProcAsync (stringproc_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes a proc.

(async)

Any currently running instances of the proc will be killed.

Parameters
proc_nameName of the proc to be deleted. Must be the name of a currently existing proc.
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 31997 of file KineticaFunctions.cs.