Package org.apache.solr.response
Interface BinaryQueryResponseWriter
- 
- All Superinterfaces:
- NamedListInitializedPlugin,- QueryResponseWriter
 - All Known Implementing Classes:
- BinaryResponseWriter,- RawResponseWriter,- SmileResponseWriter
 
 public interface BinaryQueryResponseWriter extends QueryResponseWriter Implementations ofBinaryQueryResponseWriterare used to write response in binary format.Functionality is exactly same as its parent class QueryResponseWriterBut it may not implement thewrite(Writer writer, SolrQueryRequest request, SolrQueryResponse response)method
- 
- 
Field Summary- 
Fields inherited from interface org.apache.solr.response.QueryResponseWriterCONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(OutputStream out, SolrQueryRequest request, SolrQueryResponse response)Use it to write the response in a binary format- 
Methods inherited from interface org.apache.solr.util.plugin.NamedListInitializedPlugininit
 - 
Methods inherited from interface org.apache.solr.response.QueryResponseWritergetContentType, write
 
- 
 
- 
- 
- 
Method Detail- 
writevoid write(OutputStream out, SolrQueryRequest request, SolrQueryResponse response) throws IOException Use it to write the response in a binary format- Throws:
- IOException
 
 
- 
 
-