Package io.micronaut.retry.event
Class CircuitOpenEvent
java.lang.Object
java.util.EventObject
io.micronaut.context.event.ApplicationEvent
io.micronaut.retry.event.CircuitOpenEvent
- All Implemented Interfaces:
Serializable
An event fired when the Circuit is
CircuitState.OPEN
and
requests are no longer being accepted.- Since:
- 1.0
- Author:
- graemerocher
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionCircuitOpenEvent
(ExecutableMethod<?, ?> source, RetryState retryState, Throwable throwable) -
Method Summary
Methods inherited from class java.util.EventObject
toString
-
Constructor Details
-
CircuitOpenEvent
- Parameters:
source
- A compile time produced invocation of a method callretryState
- Encapsulate the current state ofRetryable
operation.throwable
- The cause
-
-
Method Details
-
getRetryState
- Returns:
- The retry context
-
getThrowable
- Returns:
- The original exception that will be rethrown to the user
-
getSource
- Overrides:
getSource
in classEventObject
- Returns:
- The method that represents the circuit
-