Package org.elasticsearch.search.fetch
Class QueryFetchSearchResult
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.search.SearchPhaseResult
-
- org.elasticsearch.search.fetch.QueryFetchSearchResult
-
- All Implemented Interfaces:
Streamable,Writeable
public final class QueryFetchSearchResult 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 QueryFetchSearchResult()QueryFetchSearchResult(StreamInput in)QueryFetchSearchResult(QuerySearchResult queryResult, FetchSearchResult fetchResult)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FetchSearchResultfetchResult()Returns the fetch result iff it's included in this response otherwisenulllonggetRequestId()Returns the results request ID that is used to reference the search context on the executing nodeSearchShardTargetgetSearchShardTarget()QuerySearchResultqueryResult()Returns the query result iff it's included in this response otherwisenullvoidreadFrom(StreamInput in)Set this object's fields from a StreamInput.static QueryFetchSearchResultreadQueryFetchSearchResult(StreamInput in)voidsetSearchShardTarget(SearchShardTarget shardTarget)voidsetShardIndex(int requestIndex)voidwriteTo(StreamOutput out)Write this object's fields to a StreamOutput.-
Methods inherited from class org.elasticsearch.search.SearchPhaseResult
getShardIndex
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
-
-
-
Constructor Detail
-
QueryFetchSearchResult
public QueryFetchSearchResult()
-
QueryFetchSearchResult
public QueryFetchSearchResult(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
QueryFetchSearchResult
public QueryFetchSearchResult(QuerySearchResult queryResult, FetchSearchResult fetchResult)
-
-
Method Detail
-
getRequestId
public long getRequestId()
Description copied from class:SearchPhaseResultReturns the results request ID that is used to reference the search context on the executing node- Overrides:
getRequestIdin classSearchPhaseResult
-
getSearchShardTarget
public SearchShardTarget getSearchShardTarget()
- Overrides:
getSearchShardTargetin classSearchPhaseResult
-
setSearchShardTarget
public void setSearchShardTarget(SearchShardTarget shardTarget)
- Overrides:
setSearchShardTargetin classSearchPhaseResult
-
setShardIndex
public void setShardIndex(int requestIndex)
- Overrides:
setShardIndexin classSearchPhaseResult
-
queryResult
public QuerySearchResult queryResult()
Description copied from class:SearchPhaseResultReturns the query result iff it's included in this response otherwisenull- Overrides:
queryResultin classSearchPhaseResult
-
fetchResult
public FetchSearchResult fetchResult()
Description copied from class:SearchPhaseResultReturns the fetch result iff it's included in this response otherwisenull- Overrides:
fetchResultin classSearchPhaseResult
-
readQueryFetchSearchResult
public static QueryFetchSearchResult readQueryFetchSearchResult(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
Description copied from interface:StreamableSet this object's fields from a StreamInput.- Specified by:
readFromin interfaceStreamable- Overrides:
readFromin classTransportMessage- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:StreamableWrite this object's fields to a StreamOutput.- Specified by:
writeToin interfaceStreamable- Specified by:
writeToin interfaceWriteable- Overrides:
writeToin classTransportMessage- Throws:
java.io.IOException
-
-