HubGetProgressAsyncT Method (Int32, FuncResponse, T, AsyncHandle) |
Gives information about the progress of the DoReload and DoSave calls.
For more information on DoReload and DoSave, see the DoReload method and DoSave method.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax public Task<T> GetProgressAsync<T>(
int requestId,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Public Function GetProgressAsync(Of T) (
requestId As Integer,
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- requestId
- Type: SystemInt32
Identifier of the DoReload or DoSave request or 0.
Complete information is returned if the identifier of the request is given.
If the identifier is 0, less information is given. Progress messages and error messages are returned but information like when the request started and finished is not returned. - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTImplements
IHubGetProgressAsyncT(Int32, FuncResponse, T, AsyncHandle)See Also