Package org.elasticsearch.search.fetch
Class FetchSearchResult
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.search.SearchPhaseResult
-
- org.elasticsearch.search.fetch.FetchSearchResult
-
- All Implemented Interfaces:
Streamable
,Writeable
public final class FetchSearchResult extends SearchPhaseResult
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
-
Fields inherited from class org.elasticsearch.search.SearchPhaseResult
requestId
-
-
Constructor Summary
Constructors Constructor Description FetchSearchResult()
FetchSearchResult(long id, SearchShardTarget shardTarget)
FetchSearchResult(StreamInput in)
-
Method Summary
Modifier and Type Method Description int
counterGetAndIncrement()
FetchSearchResult
fetchResult()
Returns the fetch result iff it's included in this response otherwisenull
SearchHits
hits()
void
hits(SearchHits hits)
FetchSearchResult
initCounter()
QuerySearchResult
queryResult()
Returns the query result iff it's included in this response otherwisenull
static FetchSearchResult
readFetchSearchResult(StreamInput in)
void
readFrom(StreamInput in)
Set this object's fields from a StreamInput.void
writeTo(StreamOutput out)
Write this object's fields to a StreamOutput.-
Methods inherited from class org.elasticsearch.search.SearchPhaseResult
getRequestId, getSearchShardTarget, getShardIndex, setSearchShardTarget, setShardIndex
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
-
-
-
Constructor Detail
-
FetchSearchResult
public FetchSearchResult()
-
FetchSearchResult
public FetchSearchResult(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
FetchSearchResult
public FetchSearchResult(long id, SearchShardTarget shardTarget)
-
-
Method Detail
-
queryResult
public QuerySearchResult queryResult()
Description copied from class:SearchPhaseResult
Returns the query result iff it's included in this response otherwisenull
- Overrides:
queryResult
in classSearchPhaseResult
-
fetchResult
public FetchSearchResult fetchResult()
Description copied from class:SearchPhaseResult
Returns the fetch result iff it's included in this response otherwisenull
- Overrides:
fetchResult
in classSearchPhaseResult
-
hits
public void hits(SearchHits hits)
-
hits
public SearchHits hits()
-
initCounter
public FetchSearchResult initCounter()
-
counterGetAndIncrement
public int counterGetAndIncrement()
-
readFetchSearchResult
public static FetchSearchResult readFetchSearchResult(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
Description copied from interface:Streamable
Set this object's fields from a StreamInput.- Specified by:
readFrom
in interfaceStreamable
- Overrides:
readFrom
in classTransportMessage
- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Streamable
Write this object's fields to a StreamOutput.- Specified by:
writeTo
in interfaceStreamable
- Specified by:
writeTo
in interfaceWriteable
- Overrides:
writeTo
in classTransportMessage
- Throws:
java.io.IOException
-
-