Class _DIAsyncResultProgress
- java.lang.Object
-
- step.repository.alm.v16.otaclient.events._DIAsyncResultProgress
-
public abstract class _DIAsyncResultProgress extends java.lang.Object
For HP use. Progress events exposed by IAsyncResultStorage. Allow to track async results operations
-
-
Constructor Summary
Constructors Constructor Description _DIAsyncResultProgress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onOperationComplete(OPERATION_TYPE eType, java.lang.Object context)
void
onOperationFailed(OPERATION_TYPE eType, IErrorInfo pError, java.lang.Object context)
void
onProgress(OPERATION_TYPE eType, int current, java.lang.Object context)
-
-
-
Method Detail
-
onProgress
public void onProgress(OPERATION_TYPE eType, int current, java.lang.Object context)
- Parameters:
eType
- Mandatory step.repository.alm.v16.otaclient.OPERATION_TYPE parameter.current
- Mandatory int parameter.context
- Mandatory java.lang.Object parameter.
-
onOperationComplete
public void onOperationComplete(OPERATION_TYPE eType, java.lang.Object context)
- Parameters:
eType
- Mandatory step.repository.alm.v16.otaclient.OPERATION_TYPE parameter.context
- Mandatory java.lang.Object parameter.
-
onOperationFailed
public void onOperationFailed(OPERATION_TYPE eType, IErrorInfo pError, java.lang.Object context)
- Parameters:
eType
- Mandatory step.repository.alm.v16.otaclient.OPERATION_TYPE parameter.pError
- Mandatory step.repository.alm.v16.otaclient.IErrorInfo parameter.context
- Mandatory java.lang.Object parameter.
-
-