Package org.apache.solr.response
Class CborResponseWriter
java.lang.Object
org.apache.solr.response.CborResponseWriter
- All Implemented Interfaces:
QueryResponseWriter,NamedListInitializedPlugin
A response writer impl that can write results in CBOR (cbor.io) format when wt=cbor. It uses the
jackson library to write the stream out
-
Field Summary
Fields inherited from interface org.apache.solr.response.QueryResponseWriter
CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetContentType(SolrQueryRequest request, SolrQueryResponse response) Return the applicable Content Type for a request, this method must be thread safe.voidwrite(OutputStream out, SolrQueryRequest req, SolrQueryResponse response, String contentType) Writes the response to theOutputStream.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.solr.util.plugin.NamedListInitializedPlugin
initMethods inherited from interface org.apache.solr.response.QueryResponseWriter
write, writeToString
-
Constructor Details
-
CborResponseWriter
public CborResponseWriter()
-
-
Method Details
-
write
public void write(OutputStream out, SolrQueryRequest req, SolrQueryResponse response, String contentType) throws IOException Description copied from interface:QueryResponseWriterWrites the response to theOutputStream.contentTypeis fromQueryResponseWriter.getContentType(SolrQueryRequest, SolrQueryResponse), and it's often ignored.- Specified by:
writein interfaceQueryResponseWriter- Throws:
IOException
-
getContentType
Description copied from interface:QueryResponseWriterReturn the applicable Content Type for a request, this method must be thread safe.QueryResponseWriter's must implement this method to return a valid HTTP Content-Type header for the request, that will logically correspond with the output produced by the write method.
- Specified by:
getContentTypein interfaceQueryResponseWriter- Returns:
- a Content-Type string, which may not be null.
-