Interface SmallRyeFaultToleranceConfig
@ConfigMapping(prefix="quarkus.fault-tolerance")
@ConfigRoot(phase=RUN_TIME)
public interface SmallRyeFaultToleranceConfig
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface -
Method Summary
Modifier and TypeMethodDescriptionenabled()Whether fault tolerance strategies are enabled.Whether fault tolerance metrics are enabled.Whether SmallRye Fault Tolerance should be compatible with the MicroProfile Fault Tolerance specification.Configuration of fault tolerance strategies; either global, per class, or per method.
-
Method Details
-
enabled
Whether fault tolerance strategies are enabled. Note that@Fallbackis always enabled, this applies to all other strategies. -
metricsEnabled
Whether fault tolerance metrics are enabled. -
mpCompatibility
Whether SmallRye Fault Tolerance should be compatible with the MicroProfile Fault Tolerance specification. -
strategies
@WithParentName @ConfigDocMapKey("<identifier>") Map<String,SmallRyeFaultToleranceConfig.StrategiesConfig> strategies()Configuration of fault tolerance strategies; either global, per class, or per method. Keys are:global: for global configuration"<classname>": for per class configuration"<classname>/<methodname>": for per method configuration
-