Class CircuitBreakerService
java.lang.Object
org.elasticsearch.common.component.AbstractLifecycleComponent
org.elasticsearch.indices.breaker.CircuitBreakerService
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,LifecycleComponent,Releasable
- Direct Known Subclasses:
HierarchyCircuitBreakerService,NoneCircuitBreakerService,PreallocatedCircuitBreakerService
public abstract class CircuitBreakerService extends AbstractLifecycleComponent
Interface for Circuit Breaker services, which provide breakers to classes
that load field data.
-
Field Summary
Fields inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
lifecycle -
Constructor Summary
Constructors Modifier Constructor Description protectedCircuitBreakerService() -
Method Summary
Modifier and Type Method Description protected voiddoClose()protected voiddoStart()protected voiddoStop()abstract CircuitBreakergetBreaker(java.lang.String name)abstract AllCircuitBreakerStatsstats()abstract CircuitBreakerStatsstats(java.lang.String name)Methods inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
addLifecycleListener, close, lifecycleState, removeLifecycleListener, start, stopMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
CircuitBreakerService
protected CircuitBreakerService()
-
-
Method Details
-
getBreaker
- Returns:
- the breaker that can be used to register estimates against
-
stats
- Returns:
- stats about all breakers
-
stats
- Returns:
- stats about a specific breaker
-
doStart
protected void doStart()- Specified by:
doStartin classAbstractLifecycleComponent
-
doStop
protected void doStop()- Specified by:
doStopin classAbstractLifecycleComponent
-
doClose
protected void doClose()- Specified by:
doClosein classAbstractLifecycleComponent
-