Package io.github.resilience4j.bulkhead
Interface Bulkhead.EventPublisher
- All Superinterfaces:
io.github.resilience4j.core.EventPublisher<BulkheadEvent>
- Enclosing interface:
- Bulkhead
public static interface Bulkhead.EventPublisher
extends io.github.resilience4j.core.EventPublisher<BulkheadEvent>
An EventPublisher which can be used to register event consumers.
-
Method Summary
Modifier and TypeMethodDescriptiononCallFinished(io.github.resilience4j.core.EventConsumer<BulkheadOnCallFinishedEvent> eventConsumer) onCallPermitted(io.github.resilience4j.core.EventConsumer<BulkheadOnCallPermittedEvent> eventConsumer) onCallRejected(io.github.resilience4j.core.EventConsumer<BulkheadOnCallRejectedEvent> eventConsumer) Methods inherited from interface io.github.resilience4j.core.EventPublisher
onEvent
-
Method Details
-
onCallRejected
Bulkhead.EventPublisher onCallRejected(io.github.resilience4j.core.EventConsumer<BulkheadOnCallRejectedEvent> eventConsumer) -
onCallPermitted
Bulkhead.EventPublisher onCallPermitted(io.github.resilience4j.core.EventConsumer<BulkheadOnCallPermittedEvent> eventConsumer) -
onCallFinished
Bulkhead.EventPublisher onCallFinished(io.github.resilience4j.core.EventConsumer<BulkheadOnCallFinishedEvent> eventConsumer)
-