Class MultiSearchTemplateResponse
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.action.ActionResponse
-
- org.elasticsearch.script.mustache.MultiSearchTemplateResponse
-
- All Implemented Interfaces:
java.lang.Iterable<MultiSearchTemplateResponse.Item>,Streamable,Writeable,ToXContent,ToXContentObject
public class MultiSearchTemplateResponse extends ActionResponse implements java.lang.Iterable<MultiSearchTemplateResponse.Item>, ToXContentObject
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMultiSearchTemplateResponse.ItemA search template response item, holding the actual search template response, or an error message if it failed.-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V extends java.lang.Object>, Writeable.Writer<V extends java.lang.Object>
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description MultiSearchTemplateResponse(MultiSearchTemplateResponse.Item[] items)
-
Method Summary
Modifier and Type Method Description static MultiSearchTemplateResponsefromXContext(XContentParser parser)MultiSearchTemplateResponse.Item[]getResponses()The list of responses, the order is the same as the one provided in the request.java.util.Iterator<MultiSearchTemplateResponse.Item>iterator()voidreadFrom(StreamInput in)java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Constructor Detail
-
MultiSearchTemplateResponse
public MultiSearchTemplateResponse(MultiSearchTemplateResponse.Item[] items)
-
-
Method Detail
-
iterator
public java.util.Iterator<MultiSearchTemplateResponse.Item> iterator()
- Specified by:
iteratorin interfacejava.lang.Iterable<MultiSearchTemplateResponse.Item>
-
getResponses
public MultiSearchTemplateResponse.Item[] getResponses()
The list of responses, the order is the same as the one provided in the request.
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
- Specified by:
readFromin interfaceStreamable- Overrides:
readFromin classActionResponse- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
- Specified by:
writeToin interfaceStreamable- Specified by:
writeToin interfaceWriteable- Overrides:
writeToin classActionResponse- Throws:
java.io.IOException
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContext
public static MultiSearchTemplateResponse fromXContext(XContentParser parser)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-