public class SortingResponseWriter extends Object implements QueryResponseWriter
Modifier and Type | Class and Description |
---|---|
class |
SortingResponseWriter.DoubleAsc |
class |
SortingResponseWriter.DoubleDesc |
protected class |
SortingResponseWriter.FieldWriter |
class |
SortingResponseWriter.FloatAsc |
class |
SortingResponseWriter.FloatDesc |
static interface |
SortingResponseWriter.IntComp |
class |
SortingResponseWriter.PriorityQueue<T> |
static interface |
SortingResponseWriter.SortValue |
CONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
Constructor and Description |
---|
SortingResponseWriter() |
Modifier and Type | Method and Description |
---|---|
String |
getContentType(SolrQueryRequest req,
SolrQueryResponse res)
Return the applicable Content Type for a request, this method
must be thread safe.
|
protected SortingResponseWriter.FieldWriter[] |
getFieldWriters(String[] fields,
SolrIndexSearcher searcher) |
void |
init(NamedList args)
init will be called just once, immediately after creation. |
void |
write(Writer writer,
SolrQueryRequest req,
SolrQueryResponse res)
Write a SolrQueryResponse, this method must be thread save.
|
protected void |
writeDoc(org.apache.solr.response.SortingResponseWriter.SortDoc sortDoc,
List<AtomicReaderContext> leaves,
SortingResponseWriter.FieldWriter[] fieldWriters,
FixedBitSet[] sets,
Writer out) |
public void init(NamedList args)
QueryResponseWriter
init
will be called just once, immediately after creation.
The args are user-level initialization parameters that may be specified when declaring a response writer in solrconfig.xml
init
in interface QueryResponseWriter
init
in interface NamedListInitializedPlugin
public String getContentType(SolrQueryRequest req, SolrQueryResponse res)
QueryResponseWriter
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.
getContentType
in interface QueryResponseWriter
public void write(Writer writer, SolrQueryRequest req, SolrQueryResponse res) throws IOException
QueryResponseWriter
Information about the request (in particular: formating options) may be
obtained from req
but the dominant source of information
should be rsp
.
There are no mandatory actions that write must perform. An empty write implementation would fulfill all interface obligations.
write
in interface QueryResponseWriter
IOException
protected void writeDoc(org.apache.solr.response.SortingResponseWriter.SortDoc sortDoc, List<AtomicReaderContext> leaves, SortingResponseWriter.FieldWriter[] fieldWriters, FixedBitSet[] sets, Writer out) throws IOException
IOException
protected SortingResponseWriter.FieldWriter[] getFieldWriters(String[] fields, SolrIndexSearcher searcher) throws IOException
IOException
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.