Package org.elasticsearch.search.profile
Class ProfileShardResult
- java.lang.Object
-
- org.elasticsearch.search.profile.ProfileShardResult
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Constructor Summary
Constructors Constructor Description ProfileShardResult(java.util.List<QueryProfileShardResult> queryProfileResults, AggregationProfileShardResult aggProfileShardResult)
ProfileShardResult(StreamInput in)
-
Method Summary
Modifier and Type Method Description AggregationProfileShardResult
getAggregationProfileResults()
java.util.List<QueryProfileShardResult>
getQueryProfileResults()
void
writeTo(StreamOutput out)
Write this into the StreamOutput.
-
-
-
Constructor Detail
-
ProfileShardResult
public ProfileShardResult(java.util.List<QueryProfileShardResult> queryProfileResults, AggregationProfileShardResult aggProfileShardResult)
-
ProfileShardResult
public ProfileShardResult(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.
-
getQueryProfileResults
public java.util.List<QueryProfileShardResult> getQueryProfileResults()
-
getAggregationProfileResults
public AggregationProfileShardResult getAggregationProfileResults()
-
-