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:
java.io.Serializable
public class CircuitOpenEvent extends io.micronaut.context.event.ApplicationEventAn event fired when the Circuit isCircuitState.OPENand requests are no longer being accepted.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CircuitOpenEvent(io.micronaut.inject.ExecutableMethod<?,?> source, RetryState retryState, java.lang.Throwable throwable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RetryStategetRetryState()io.micronaut.inject.ExecutableMethod<?,?>getSource()java.lang.ThrowablegetThrowable()
-
-
-
Constructor Detail
-
CircuitOpenEvent
public CircuitOpenEvent(io.micronaut.inject.ExecutableMethod<?,?> source, RetryState retryState, java.lang.Throwable throwable)- Parameters:
source- A compile time produced invocation of a method callretryState- Encapsulate the current state ofRetryableoperation.throwable- The cause
-
-
Method Detail
-
getRetryState
public RetryState getRetryState()
- Returns:
- The retry context
-
getThrowable
public java.lang.Throwable getThrowable()
- Returns:
- The original exception that will be rethrown to the user
-
getSource
public io.micronaut.inject.ExecutableMethod<?,?> getSource()
- Overrides:
getSourcein classjava.util.EventObject- Returns:
- The method that represents the circuit
-
-