Package cn.sliew.milky.common.filter
Interface ActionFilterChain<Request,Response>
-
- All Known Implementing Classes:
DefaultFilterChain
public interface ActionFilterChain<Request,Response>A filter chain allowing to continue and process the transport action request参考elasticsearch的过滤链实现
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidproceed(Request request, ActionListener<Response> listener)Continue processing the request.
-
-
-
Method Detail
-
proceed
void proceed(Request request, ActionListener<Response> listener)
Continue processing the request. Should only be called if a response has not been sent through the givenlistener
-
-