bool loopBreaker(int maxRetry) { if (failCounter < maxRetry) { failCounter++; return false; } failCounter = 0; return true; }