| Package | Description |
|---|---|
| org.apache.camel.impl |
Default implementation classes for Camel Core
|
| org.apache.camel.impl.lw | |
| org.apache.camel.model |
The JAXB POJOs for the
XML
Configuration of the routing rules.
|
| Modifier and Type | Method and Description |
|---|---|
HystrixConfigurationDefinition |
DefaultModel.getHystrixConfiguration(String id) |
HystrixConfigurationDefinition |
DefaultCamelContext.getHystrixConfiguration(String id) |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultModel.addHystrixConfiguration(String id,
HystrixConfigurationDefinition configuration) |
void |
DefaultCamelContext.addHystrixConfiguration(String id,
HystrixConfigurationDefinition configuration) |
void |
DefaultModel.setHystrixConfiguration(HystrixConfigurationDefinition configuration) |
void |
DefaultCamelContext.setHystrixConfiguration(HystrixConfigurationDefinition configuration) |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultModel.setHystrixConfigurations(List<HystrixConfigurationDefinition> configurations) |
void |
DefaultCamelContext.setHystrixConfigurations(List<HystrixConfigurationDefinition> configurations) |
| Modifier and Type | Method and Description |
|---|---|
HystrixConfigurationDefinition |
LightweightCamelContext.getHystrixConfiguration(String id) |
| Modifier and Type | Method and Description |
|---|---|
void |
LightweightCamelContext.addHystrixConfiguration(String id,
HystrixConfigurationDefinition configuration) |
void |
LightweightCamelContext.setHystrixConfiguration(HystrixConfigurationDefinition configuration) |
| Modifier and Type | Method and Description |
|---|---|
void |
LightweightCamelContext.setHystrixConfigurations(List<HystrixConfigurationDefinition> configurations) |
| Modifier and Type | Method and Description |
|---|---|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.allowMaximumSizeToDivergeFromCoreSize(boolean allowMaximumSizeToDivergeFromCoreSize)
Deprecated.
Allows the configuration for maximumSize to take effect.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerEnabled(boolean circuitBreakerEnabled)
Deprecated.
Whether to use a HystrixCircuitBreaker or not.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerErrorThresholdPercentage(int circuitBreakerErrorThresholdPercentage)
Deprecated.
Error percentage threshold (as whole number such as 50) at which point
the circuit breaker will trip open and reject requests.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerForceClosed(boolean circuitBreakerForceClosed)
Deprecated.
If true the HystrixCircuitBreaker.allowRequest() will always return true
to allow requests regardless of the error percentage from
HystrixCommandMetrics.getHealthCounts().
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerForceOpen(boolean circuitBreakerForceOpen)
Deprecated.
If true the HystrixCircuitBreaker.allowRequest() will always return
false, causing the circuit to be open (tripped) and reject all requests.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerRequestVolumeThreshold(int circuitBreakerRequestVolumeThreshold)
Deprecated.
Minimum number of requests in the
metricsRollingStatisticalWindowInMilliseconds() that must exist before
the HystrixCircuitBreaker will trip.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.circuitBreakerSleepWindowInMilliseconds(int circuitBreakerSleepWindowInMilliseconds)
Deprecated.
The time in milliseconds after a HystrixCircuitBreaker trips open that it
should wait before trying requests again.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.corePoolSize(int corePoolSize)
Deprecated.
Core thread-pool size.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionIsolationSemaphoreMaxConcurrentRequests(int executionIsolationSemaphoreMaxConcurrentRequests)
Deprecated.
Number of concurrent requests permitted to HystrixCommand.run().
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionIsolationStrategy(String executionIsolationStrategy)
Deprecated.
What isolation strategy HystrixCommand.run() will be executed with.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionIsolationThreadInterruptOnTimeout(boolean executionIsolationThreadInterruptOnTimeout)
Deprecated.
Whether the execution thread should attempt an interrupt (using Future
cancel) when a thread times out.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionTimeoutEnabled(boolean executionTimeoutEnabled)
Deprecated.
Whether the timeout mechanism is enabled for this command
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.executionTimeoutInMilliseconds(int executionTimeoutInMilliseconds)
Deprecated.
Time in milliseconds at which point the command will timeout and halt
execution.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.fallbackEnabled(boolean fallbackEnabled)
Deprecated.
Whether HystrixCommand.getFallback() should be attempted when failure
occurs.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.fallbackIsolationSemaphoreMaxConcurrentRequests(int fallbackIsolationSemaphoreMaxConcurrentRequests)
Deprecated.
Number of concurrent requests permitted to HystrixCommand.getFallback().
|
HystrixConfigurationDefinition |
CircuitBreakerDefinition.getHystrixConfiguration()
Deprecated.
|
HystrixConfigurationDefinition |
Model.getHystrixConfiguration(String id)
Gets the Hystrix configuration by the given name.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.groupKey(String groupKey)
Deprecated.
Sets the group key to use.
|
HystrixConfigurationDefinition |
CircuitBreakerDefinition.hystrixConfiguration()
Deprecated.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.keepAliveTime(int keepAliveTime)
Deprecated.
Keep-alive time in minutes.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.maximumSize(int maximumSize)
Deprecated.
Maximum thread-pool size that gets passed to
ThreadPoolExecutor.setMaximumPoolSize(int). |
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.maxQueueSize(int maxQueueSize)
Deprecated.
Max queue size.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsHealthSnapshotIntervalInMilliseconds(int metricsHealthSnapshotIntervalInMilliseconds)
Deprecated.
Time in milliseconds to wait between allowing health snapshots to be
taken that calculate success and error percentages and affect
HystrixCircuitBreaker.isOpen() status.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileBucketSize(int metricsRollingPercentileBucketSize)
Deprecated.
Maximum number of values stored in each bucket of the rolling percentile.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileEnabled(boolean metricsRollingPercentileEnabled)
Deprecated.
Whether percentile metrics should be captured using
HystrixRollingPercentile inside HystrixCommandMetrics.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileWindowBuckets(int metricsRollingPercentileWindowBuckets)
Deprecated.
Number of buckets the rolling percentile window is broken into.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingPercentileWindowInMilliseconds(int metricsRollingPercentileWindowInMilliseconds)
Deprecated.
Duration of percentile rolling window in milliseconds.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingStatisticalWindowBuckets(int metricsRollingStatisticalWindowBuckets)
Deprecated.
Number of buckets the rolling statistical window is broken into.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.metricsRollingStatisticalWindowInMilliseconds(int metricsRollingStatisticalWindowInMilliseconds)
Deprecated.
This property sets the duration of the statistical rolling window, in
milliseconds.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.queueSizeRejectionThreshold(int queueSizeRejectionThreshold)
Deprecated.
Queue size rejection threshold is an artificial max size at which
rejections will occur even if maxQueueSize has not been reached.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.requestLogEnabled(boolean requestLogEnabled)
Deprecated.
Whether HystrixCommand execution and events should be logged to
HystrixRequestLog.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.threadPoolKey(String threadPoolKey)
Deprecated.
Sets the thread pool key to use.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.threadPoolRollingNumberStatisticalWindowBuckets(int threadPoolRollingNumberStatisticalWindowBuckets)
Deprecated.
Number of buckets the rolling statistical window is broken into.
|
HystrixConfigurationDefinition |
HystrixConfigurationDefinition.threadPoolRollingNumberStatisticalWindowInMilliseconds(int threadPoolRollingNumberStatisticalWindowInMilliseconds)
Deprecated.
Duration of statistical rolling window in milliseconds.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Model.addHystrixConfiguration(String id,
HystrixConfigurationDefinition configuration)
Adds the Hystrix configuration
|
CircuitBreakerDefinition |
CircuitBreakerDefinition.hystrixConfiguration(HystrixConfigurationDefinition configuration)
Deprecated.
|
void |
Model.setHystrixConfiguration(HystrixConfigurationDefinition configuration)
Sets the default Hystrix configuration
|
void |
CircuitBreakerDefinition.setHystrixConfiguration(HystrixConfigurationDefinition hystrixConfiguration)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Model.setHystrixConfigurations(List<HystrixConfigurationDefinition> configurations)
Sets the Hystrix configurations
|
Apache Camel