- onCallBreakerOpenFailure() - Method in interface com.lightbend.lagom.internal.spi.CircuitBreakerMetrics
-
Invoked for each call when the future is completed with
`akka.pattern.CircuitBreakerOpenException`
- onCallFailure(long) - Method in interface com.lightbend.lagom.internal.spi.CircuitBreakerMetrics
-
Invoked for each call when the future is completed with exception, except for
`TimeoutException` and `CircuitBreakerOpenException` that are handled by separate methods.
- onCallSuccess(long) - Method in interface com.lightbend.lagom.internal.spi.CircuitBreakerMetrics
-
Invoked for each successful call.
- onCallTimeoutFailure(long) - Method in interface com.lightbend.lagom.internal.spi.CircuitBreakerMetrics
-
Invoked for each call when the future is completed with `java.util.concurrent.TimeoutException`
- onClose() - Method in interface com.lightbend.lagom.internal.spi.CircuitBreakerMetrics
-
Invoked when the circuit breaker transitions to the close state.
- onHalfOpen() - Method in interface com.lightbend.lagom.internal.spi.CircuitBreakerMetrics
-
Invoked when the circuit breaker transitions to the half-open state after reset timeout.
- onOpen() - Method in interface com.lightbend.lagom.internal.spi.CircuitBreakerMetrics
-
Invoked when the circuit breaker transitions to the open state.