SetLooselyCoupledVectorAsync Method
Overloads
| SetLooselyCoupledVectorAsync(IEnumerable<Byte>) | Sets a list of table states, one for each table. The following states apply: * 0 The table is not loosely coupled. * 1 The table is loosely coupled. * 2 The table is loosely coupled and cannot be changed to another state using the Qlik Engine API. | |
| SetLooselyCoupledVectorAsync(AsyncHandle, IEnumerable<Byte>) | Sets a list of table states, one for each table. The following states apply: * 0 The table is not loosely coupled. * 1 The table is loosely coupled. * 2 The table is loosely coupled and cannot be changed to another state using the Qlik Engine API. | |
| SetLooselyCoupledVectorAsync<T>(AsyncHandle, Func<Response, T>, IEnumerable<Byte>) | Sets a list of table states, one for each table. The following states apply: * 0 The table is not loosely coupled. * 1 The table is loosely coupled. * 2 The table is loosely coupled and cannot be changed to another state using the Qlik Engine API. | 
SetLooselyCoupledVectorAsync(IEnumerable<Byte>)
Sets a list of table states, one for each table.
The following states apply:
- 0 The table is not loosely coupled.
- 1 The table is loosely coupled.
- 2 The table is loosely coupled and cannot be changed to another state using the Qlik Engine API.
Declaration
      public Task<bool> SetLooselyCoupledVectorAsync([QixName("qv")] IEnumerable<byte> v)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Collections.Generic.IEnumerable<System.Byte> | v | The list of table states to set. A state will not be changed if already set to 2. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Boolean> | 
Implements
Remarks
The last three values in the vector are for internal use.
SetLooselyCoupledVectorAsync(AsyncHandle, IEnumerable<Byte>)
Sets a list of table states, one for each table.
The following states apply:
- 0 The table is not loosely coupled.
- 1 The table is loosely coupled.
- 2 The table is loosely coupled and cannot be changed to another state using the Qlik Engine API.
Declaration
      public Task<bool> SetLooselyCoupledVectorAsync(AsyncHandle asyncHandle, [QixName("qv")] IEnumerable<byte> v)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Collections.Generic.IEnumerable<System.Byte> | v | The list of table states to set. A state will not be changed if already set to 2. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Boolean> | 
Implements
Remarks
The last three values in the vector are for internal use.
SetLooselyCoupledVectorAsync<T>(AsyncHandle, Func<Response, T>, IEnumerable<Byte>)
Sets a list of table states, one for each table.
The following states apply:
- 0 The table is not loosely coupled.
- 1 The table is loosely coupled.
- 2 The table is loosely coupled and cannot be changed to another state using the Qlik Engine API.
Declaration
      public Task<T> SetLooselyCoupledVectorAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qv")] IEnumerable<byte> v)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.Collections.Generic.IEnumerable<System.Byte> | v | The list of table states to set. A state will not be changed if already set to 2. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T | 
Implements
Remarks
The last three values in the vector are for internal use.