boolean isBusy()
Checks if the device or the SDK is busy processing.
Return
True if the device or the SDK is busy processing. False, otherwise.
Examples
checkBusy();
function checkBusy() {
setBusy(KioEMV.isBusy());
setTimeout(checkBusy, 1000);
}
function setBusy(busy) {
document.getElementById('busy').innerText = busy;
}
Requirements
KioWare for Android version 3.23 or greater.