Interface PayloadInterceptorChain
-
public interface PayloadInterceptorChain
Contract to allow aPayloadInterceptor
to delegate to the next in the chain. *- Since:
- 5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<java.lang.Void>
next(PayloadExchange exchange)
Process the payload exchange.
-
-
-
Method Detail
-
next
reactor.core.publisher.Mono<java.lang.Void> next(PayloadExchange exchange)
Process the payload exchange.- Parameters:
exchange
- the current server exchange- Returns:
Mono<Void>
to indicate when request processing is complete
-
-