◆ lockTable() [1/2]
| inline |
Manages global access to a table’s data.
By default a table has a lock_type of READ_WRITE, indicating all operations are permitted. A user may request a READ_ONLY or a WRITE_ONLY lock, after which only read or write operations, respectively, are permitted on the table until the lock is removed. When lock_type is NO_ACCESS then no operations are permitted on the table. The lock status can be queried by setting lock_type to STATUS.
| request_ | Request object containing the parameters for the operation. |
Definition at line 53261 of file KineticaFunctions.cs.
◆ lockTable() [2/2]
| inline |
Manages global access to a table’s data.
By default a table has a lock_type of READ_WRITE, indicating all operations are permitted. A user may request a READ_ONLY or a WRITE_ONLY lock, after which only read or write operations, respectively, are permitted on the table until the lock is removed. When lock_type is NO_ACCESS then no operations are permitted on the table. The lock status can be queried by setting lock_type to STATUS.
| table_name | Name of the table to be locked, in [schema_name.]table_name format, using standard name resolution rules. It must be a currently existing table or view. |
| lock_type | The type of lock being applied to the table. Setting it to STATUS will return the current lock status of the table without changing it. Supported values:
|
| options | Optional parameters. The default value is an empty Dictionary. |
Definition at line 53358 of file KineticaFunctions.cs.
◆ LockTableAsync() [1/2]
| inline |
Manages global access to a table’s data.
(async)
By default a table has a lock_type of READ_WRITE, indicating all operations are permitted. A user may request a READ_ONLY or a WRITE_ONLY lock, after which only read or write operations, respectively, are permitted on the table until the lock is removed. When lock_type is NO_ACCESS then no operations are permitted on the table. The lock status can be queried by setting lock_type to STATUS.
| request_ | Request object containing the parameters for the operation. |
| cancellationToken | Cancellation token to cancel the operation. |
Definition at line 53290 of file KineticaFunctions.cs.
◆ LockTableAsync() [2/2]
| inline |
Manages global access to a table’s data.
(async)
By default a table has a lock_type of READ_WRITE, indicating all operations are permitted. A user may request a READ_ONLY or a WRITE_ONLY lock, after which only read or write operations, respectively, are permitted on the table until the lock is removed. When lock_type is NO_ACCESS then no operations are permitted on the table. The lock status can be queried by setting lock_type to STATUS.
| table_name | Name of the table to be locked, in [schema_name.]table_name format, using standard name resolution rules. It must be a currently existing table or view. |
| lock_type | The type of lock being applied to the table. Setting it to STATUS will return the current lock status of the table without changing it. Supported values:
|
| options | Optional parameters. The default value is an empty Dictionary. |
| cancellationToken | Cancellation token to cancel the operation. |
Definition at line 53427 of file KineticaFunctions.cs.