Searched refs:nextWaitTime (Results 1 – 1 of 1) sorted by relevance
736 long nextWaitTime = Math.min(getCheckPollTime() * counter, MAX_CHECK_POLL_TIME); in busyWaitFunction() local737 if (currentTotalWaitTime + nextWaitTime > maxWaitTime) { in busyWaitFunction()738 nextWaitTime = maxWaitTime - currentTotalWaitTime; in busyWaitFunction()740 getRunUtil().sleep(nextWaitTime); in busyWaitFunction()741 currentTotalWaitTime += nextWaitTime; in busyWaitFunction()