runResultFailCallBack method
void
runResultFailCallBack(
- int key,
- CosXmlClientException? clientException,
- CosXmlServiceException? serviceException
Implementation
void runResultFailCallBack(int key, CosXmlClientException? clientException,
CosXmlServiceException? serviceException) {
_resultListeners[key]?.failCallBack.call(clientException, serviceException);
_resultListeners.remove(key);
_stateCallBacks.remove(key);
_progressCallBacks.remove(key);
}