Registry / networking / vertx-circuit-breaker

vertx-circuit-breaker

JSON →
library5.0.10javamavenunverified

Vert.x Circuit Breaker provides a circuit breaker pattern implementation for resilient distributed systems.

<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-circuit-breaker</artifactId> <version>5.0.10</version> </dependency>
INSTALL
IMPORT
SIG · VERTX-CIRCUIT-BREA
V
vertx-circuit-breaker
networkingjavav5.0.10
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

CircuitBreaker
io.vertx.circuitbreaker.CircuitBreaker

Minimal example creating and using a circuit breaker.

import io.vertx.circuitbreaker.CircuitBreaker; import io.vertx.core.Vertx; public class Quickstart { public static void main(String[] args) { Vertx vertx = Vertx.vertx(); CircuitBreaker breaker = CircuitBreaker.create("my-breaker", vertx); breaker.execute(future -> { // your code future.complete("success"); }).onComplete(ar -> System.out.println(ar.result())); } }
Debug
Known issues
breakingVert.x 5 API changes from previous versions.
fix
Refer to migration guide when upgrading from Vert.x 4.
affects: >=5.0.0
Upgrade
Version history
5.0.10latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
17 hits · last 30 days
node
14
OpenAI (training)
2
Resources
vertx-circuit-breaker — mvn dependency:get vertx-circuit-breaker · libregistry