Uses of Interface
dev.failsafe.Bulkhead
-
Packages that use Bulkhead Package Description dev.failsafe APIs for performing failsafe executions.dev.failsafe.internal -
-
Uses of Bulkhead in dev.failsafe
Fields in dev.failsafe declared as Bulkhead Modifier and Type Field Description private Bulkhead<?>
BulkheadFullException. bulkhead
Methods in dev.failsafe that return Bulkhead Modifier and Type Method Description Bulkhead<R>
BulkheadBuilder. build()
Builds a newBulkhead
using the builder's configuration.Bulkhead<?>
BulkheadFullException. getBulkhead()
Returns theBulkhead
that caused the exception.static <R> Bulkhead<R>
Bulkhead. of(int maxConcurrency)
Returns a Bulkhead for themaxConcurrency
that haszero wait
.Constructors in dev.failsafe with parameters of type Bulkhead Constructor Description BulkheadFullException(Bulkhead<?> bulkhead)
-
Uses of Bulkhead in dev.failsafe.internal
Classes in dev.failsafe.internal that implement Bulkhead Modifier and Type Class Description class
BulkheadImpl<R>
A Bulkhead implementation that supports sync and async waiting.
-