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

com.ing.baker.recipe.javadsl.InteractionFailureStrategy.scala Maven / Gradle / Ivy

The newest version!
package com.ing.baker.recipe.javadsl

import com.ing.baker.recipe.common
import com.ing.baker.recipe.common.InteractionFailureStrategy.RetryWithIncrementalBackoff.{UntilDeadline, UntilMaximumRetries, Until}
import com.ing.baker.recipe.common.InteractionFailureStrategy.{BlockInteraction, RetryWithIncrementalBackoff}

import scala.concurrent.duration.{Duration, MILLISECONDS}

object InteractionFailureStrategy {

  case class RetryWithIncrementalBackoffBuilder private(private val initialDelay: Option[java.time.Duration],
                                                        private val backoffFactor: Double,
                                                        private val until: Option[Until],
                                                        private val maxTimeBetweenRetries: Option[java.time.Duration],
                                                        private val fireRetryExhaustedEvent: Option[Option[String]]) {
    // initialize with defaults
    def this() = this(initialDelay = None, backoffFactor = 2, until = None, maxTimeBetweenRetries = None, fireRetryExhaustedEvent = None)

    def withInitialDelay(initialDelay: java.time.Duration) = this.copy(initialDelay = Some(initialDelay))

    def withBackoffFactor(backoffFactor: Double) = this.copy(backoffFactor = backoffFactor)

    def withMaximumRetries(count: Int) = this.copy(until = Some(UntilMaximumRetries(count)))

    def withMaxTimeBetweenRetries(maxTimeBetweenRetries: java.time.Duration) = this.copy(maxTimeBetweenRetries = Some(maxTimeBetweenRetries))

    def withFireRetryExhaustedEvent(fireRetryExhaustedEvent: String) = this.copy(fireRetryExhaustedEvent = Some(Some(fireRetryExhaustedEvent)))

    def withFireRetryExhaustedEvent() = this.copy(fireRetryExhaustedEvent = Some(None))

    def withFireRetryExhaustedEvent(fireRetryExhaustedEvent: Class[_]) = this.copy(fireRetryExhaustedEvent = Some(Some(fireRetryExhaustedEvent.getSimpleName)))

    def withDeadline(duration: java.time.Duration) = this.copy(until = Some(UntilDeadline(Duration(duration.toMillis, MILLISECONDS))))

    def build(): RetryWithIncrementalBackoff = {
      require(initialDelay.isDefined, "InitialDelay must be defined")

      var builder = common.InteractionFailureStrategy.RetryWithIncrementalBackoff.builder()
        .withUntil(until)
        .withMaxTimeBetweenRetries(maxTimeBetweenRetries.map(d => Duration(d.toMillis, MILLISECONDS)))
        .withInitialDelay(Duration(initialDelay.get.toMillis, MILLISECONDS))
        .withBackoffFactor(backoffFactor)
      if(fireRetryExhaustedEvent.isDefined)
        builder = builder.withFireRetryExhaustedEvent(fireRetryExhaustedEvent.get)
      builder.build()
    }
  }

  def FireEvent(): common.InteractionFailureStrategy.FireEventAfterFailure = common.InteractionFailureStrategy.FireEventAfterFailure(None)

  def FireEvent(eventClass: Class[_]): common.InteractionFailureStrategy.FireEventAfterFailure = FireEvent(eventClass.getSimpleName)

  def FireEvent(eventName: String): common.InteractionFailureStrategy.FireEventAfterFailure =
    common.InteractionFailureStrategy.FireEventAfterFailure(Some(eventName))

  def BlockInteraction(): BlockInteraction =
    common.InteractionFailureStrategy.BlockInteraction()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy