public final class SolrCore.LazyQueryResponseWriterWrapper extends java.lang.Object implements QueryResponseWriter
Modifier and Type | Field and Description |
---|---|
private NamedList |
_args |
private java.lang.String |
_className |
private SolrCore |
_core |
private QueryResponseWriter |
_writer |
CONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
Constructor and Description |
---|
LazyQueryResponseWriterWrapper(SolrCore core,
java.lang.String className,
NamedList args) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getContentType(SolrQueryRequest request,
SolrQueryResponse response)
Return the applicable Content Type for a request, this method
must be thread safe.
|
QueryResponseWriter |
getWrappedWriter() |
void |
init(NamedList args)
init will be called just once, immediately after creation. |
void |
write(java.io.Writer writer,
SolrQueryRequest request,
SolrQueryResponse response)
Write a SolrQueryResponse, this method must be thread save.
|
private SolrCore _core
private java.lang.String _className
private NamedList _args
private QueryResponseWriter _writer
public QueryResponseWriter getWrappedWriter()
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 void write(java.io.Writer writer, SolrQueryRequest request, SolrQueryResponse response) throws java.io.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
java.io.IOException
public java.lang.String getContentType(SolrQueryRequest request, SolrQueryResponse response)
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