Package org.elasticsearch.rest.action
Class RestBuilderListener<Response>
java.lang.Object
org.elasticsearch.rest.action.RestActionListener<Response>
org.elasticsearch.rest.action.RestResponseListener<Response>
org.elasticsearch.rest.action.RestBuilderListener<Response>
- All Implemented Interfaces:
ActionListener<Response>
- Direct Known Subclasses:
RestActions.NodesResponseRestListener
public abstract class RestBuilderListener<Response> extends RestResponseListener<Response>
A REST action listener that builds an
XContentBuilder based response.-
Field Summary
-
Constructor Summary
Constructors Constructor Description RestBuilderListener(RestChannel channel) -
Method Summary
Modifier and Type Method Description RestResponsebuildResponse(Response response)Builds the response to send back through the channel.abstract RestResponsebuildResponse(Response response, org.elasticsearch.common.xcontent.XContentBuilder builder)Builds a response to send back over the channel.
-
Constructor Details
-
Method Details
-
buildResponse
Description copied from class:RestResponseListenerBuilds the response to send back through the channel.- Specified by:
buildResponsein classRestResponseListener<Response>- Throws:
java.lang.Exception
-
buildResponse
public abstract RestResponse buildResponse(Response response, org.elasticsearch.common.xcontent.XContentBuilder builder) throws java.lang.ExceptionBuilds a response to send back over the channel. Implementors should ensure that they close the providedXContentBuilderusing theXContentBuilder.close()method.- Throws:
java.lang.Exception
-