Class Reply

    • Constructor Summary

      Constructors 
      Constructor Description
      Reply()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getDumpId()
      Returns a unique dump id for this object.
      java.lang.Exception getException()  
      boolean isOk()  
      boolean isTimeout()  
      void readContent​(java.io.DataInput in)
      Read the content of this object from the stream.
      void send()  
      void setException​(java.lang.Exception exception)  
      void setOk​(boolean ok)  
      void setTimeout​(boolean timeout)  
      java.lang.String toString()  
      void writeContent​(java.io.DataOutput out)
      Write the content of this object to the stream.
      • Methods inherited from class java.lang.Object

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

      • Reply

        public Reply()
    • Method Detail

      • getDumpId

        public int getDumpId()
        Returns a unique dump id for this object.
        Specified by:
        getDumpId in interface Dumpable
        Returns:
        unique dump id
      • writeContent

        public void writeContent​(java.io.DataOutput out)
                          throws java.io.IOException
        Write the content of this object to the stream.
        Specified by:
        writeContent in interface Dumpable
        Parameters:
        out - output stream
        Throws:
        java.io.IOException - if an error occurs
      • readContent

        public void readContent​(java.io.DataInput in)
                         throws java.io.IOException
        Read the content of this object from the stream.
        Specified by:
        readContent in interface Dumpable
        Parameters:
        in - input stream
        Throws:
        java.io.IOException - if an error occurs
      • isOk

        public boolean isOk()
      • setOk

        public void setOk​(boolean ok)
      • isTimeout

        public boolean isTimeout()
      • setTimeout

        public void setTimeout​(boolean timeout)
      • getException

        public java.lang.Exception getException()
      • setException

        public void setException​(java.lang.Exception exception)
      • send

        public void send()
      • toString

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