Interface HandshakeInterceptor
- 
- All Superinterfaces:
- Function<io.netty.handler.codec.http.FullHttpRequest,io.netty.handler.codec.http.FullHttpRequest>,- UnaryOperator<io.netty.handler.codec.http.FullHttpRequest>
 
 public interface HandshakeInterceptor extends UnaryOperator<io.netty.handler.codec.http.FullHttpRequest> This function is called when the websocket handshake is attempted and the firstFullHttpRequestis sent to the server. The interceptor allows this message to be modified as needed before it is sent to the server. Implementations are supplied toCluster.Builder.handshakeInterceptor(HandshakeInterceptor).
- 
- 
Field SummaryFields Modifier and Type Field Description static HandshakeInterceptorNO_OPThe default implementation of aHandshakeInterceptorand behaves as a no-op.
 
- 
- 
- 
Field Detail- 
NO_OPstatic final HandshakeInterceptor NO_OP The default implementation of aHandshakeInterceptorand behaves as a no-op.
 
- 
 
-