All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.octopusden.employee.service.onec.client.OneCRetry.kt Maven / Gradle / Ivy

The newest version!
package org.octopusden.employee.service.onec.client

import feign.RetryableException
import feign.Retryer
import org.slf4j.LoggerFactory
import java.util.concurrent.TimeUnit

const val numberAttempts: Int = 5
const val timeDelayAttempt: Int = 300
const val numberIterations: Int = 5

class OneCRetry(private val timeRetryInMillis: Int = 60000) : Retryer {
    private val timeDelayIteration: Int = timeRetryInMillis / numberIterations - (numberAttempts * timeDelayAttempt)
    private val stopTime = System.currentTimeMillis() + timeRetryInMillis

    private var attempt: Int = numberAttempts
    private var iteration: Int = numberIterations

    companion object {
        private val logger = LoggerFactory.getLogger(OneCRetry::class.java)
    }

    override fun continueOrPropagate(e: RetryableException?) {
        if (stopTime < System.currentTimeMillis()) {
            throw e?.cause!!
        }

        logger.debug("Retry: iteration=${numberIterations - iteration + 1}, attempt=${numberAttempts - attempt + 1}")

        if (attempt-- > 0) {
            TimeUnit.MILLISECONDS.sleep(timeDelayAttempt.toLong())
        } else if (iteration-- > 0) {
            attempt = numberAttempts

            TimeUnit.MILLISECONDS.sleep(timeDelayIteration.toLong())
        } else {
            throw e?.cause!!
        }
    }

    override fun clone(): Retryer {
        return OneCRetry(timeRetryInMillis)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy