- Thread Author
- #1
Execution.delayUntil(() -> countA > countB, 3000, 5000);
What are the signals this outputs?
countA > countB - Immediately returns true?
wait 3000-5000 returns false? or true?
For example
count cooked food every loop, if currentcooked > countedcooked while waiting for 3-5seconds, return true
so that I know I am still cooking
What are the signals this outputs?
countA > countB - Immediately returns true?
wait 3000-5000 returns false? or true?
For example
count cooked food every loop, if currentcooked > countedcooked while waiting for 3-5seconds, return true
so that I know I am still cooking