GenericObjectGetHyperCubeStackDataAsyncT Method (String, IEnumerableNxPage, Int32, FuncResponse, T, AsyncHandle) |
Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax public Task<T> GetHyperCubeStackDataAsync<T>(
string path,
IEnumerable<NxPage> pages,
int maxNbrCells = 0,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Public Function GetHyperCubeStackDataAsync(Of T) (
path As String,
pages As IEnumerable(Of NxPage),
Optional maxNbrCells As Integer = 0,
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- path
- Type: SystemString
Path to the definition of the object to be selected
For example, /qHyperCubeDef.
This parameter is mandatory. - pages
- Type: System.Collections.GenericIEnumerableNxPage
Array of pages to retrieve
This parameter is mandatory. - maxNbrCells (Optional)
- Type: SystemInt32
Maximum number of cells at outer level
This parameter is optional. The default value is 10 000. - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTImplements
IGenericObjectGetHyperCubeStackDataAsyncT(String, IEnumerableNxPage, Int32, FuncResponse, T, AsyncHandle)See Also