Class BulkheadOperator<T>
- java.lang.Object
-
- io.github.resilience4j.reactor.bulkhead.operator.BulkheadOperator<T>
-
- Type Parameters:
T- the value type
- All Implemented Interfaces:
java.util.function.Function<org.reactivestreams.Publisher<T>,org.reactivestreams.Publisher<T>>,java.util.function.UnaryOperator<org.reactivestreams.Publisher<T>>
public class BulkheadOperator<T> extends java.lang.Object implements java.util.function.UnaryOperator<org.reactivestreams.Publisher<T>>A Bulkhead operator which checks if a subscriber/observer can acquire a permission to subscribe to an upstream Publisher. Otherwise emits aBulkheadFullException, if the Bulkhead is full.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.reactivestreams.Publisher<T>apply(org.reactivestreams.Publisher<T> publisher)static <T> BulkheadOperator<T>of(io.github.resilience4j.bulkhead.Bulkhead bulkhead)Creates a BulkheadOperator.
-
-
-
Method Detail
-
of
public static <T> BulkheadOperator<T> of(io.github.resilience4j.bulkhead.Bulkhead bulkhead)
Creates a BulkheadOperator.- Type Parameters:
T- the value type of the upstream and downstream- Parameters:
bulkhead- the Bulkhead- Returns:
- a BulkheadOperator
-
-