Uses of Class
dev.failsafe.BulkheadBuilder
-
Packages that use BulkheadBuilder Package Description dev.failsafe APIs for performing failsafe executions. -
-
Uses of BulkheadBuilder in dev.failsafe
Methods in dev.failsafe that return BulkheadBuilder Modifier and Type Method Description static <R> BulkheadBuilder<R>
Bulkhead. builder(int maxConcurrency)
Returns a Bulkhead for themaxConcurrency
that haszero wait
.static <R> BulkheadBuilder<R>
Bulkhead. builder(BulkheadConfig<R> config)
Creates a new BulkheadBuilder that will be based on theconfig
.BulkheadBuilder<R>
BulkheadBuilder. withMaxWaitTime(java.time.Duration maxWaitTime)
Configures themaxWaitTime
to wait for permits to be available.
-