Class MultiSearchTemplateResponse.Item

  • All Implemented Interfaces:
    Writeable
    Enclosing class:
    MultiSearchTemplateResponse

    public static class MultiSearchTemplateResponse.Item
    extends java.lang.Object
    implements Writeable
    A search template response item, holding the actual search template response, or an error message if it failed.
    • Constructor Summary

      Constructors 
      Constructor Description
      Item​(SearchTemplateResponse response, java.lang.Exception exception)  
    • Method Summary

      Modifier and Type Method Description
      java.lang.Exception getFailure()  
      java.lang.String getFailureMessage()
      The actual failure message, null if its not a failure.
      SearchTemplateResponse getResponse()
      The actual search response, null if its a failure.
      boolean isFailure()
      Is it a failed search?
      java.lang.String toString()  
      void writeTo​(StreamOutput out)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • isFailure

        public boolean isFailure()
        Is it a failed search?
      • getFailureMessage

        @Nullable
        public java.lang.String getFailureMessage()
        The actual failure message, null if its not a failure.
      • writeTo

        public void writeTo​(StreamOutput out)
                     throws java.io.IOException
        Specified by:
        writeTo in interface Writeable
        Throws:
        java.io.IOException
      • getFailure

        public java.lang.Exception getFailure()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object