Class IO.ReadResponse

  • Enclosing class:
    IO

    public static class IO.ReadResponse
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      ReadResponse​(java.util.Optional<java.lang.Boolean> base64Encoded, java.lang.String data, java.lang.Boolean eof)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Optional<java.lang.Boolean> getBase64Encoded()
      Set if the data is base64-encoded
      java.lang.String getData()
      Data that were read.
      java.lang.Boolean getEof()
      Set if the end-of-file condition occured while reading.
      • Methods inherited from class java.lang.Object

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

      • ReadResponse

        public ReadResponse​(java.util.Optional<java.lang.Boolean> base64Encoded,
                            java.lang.String data,
                            java.lang.Boolean eof)
    • Method Detail

      • getBase64Encoded

        public java.util.Optional<java.lang.Boolean> getBase64Encoded()
        Set if the data is base64-encoded
      • getData

        public java.lang.String getData()
        Data that were read.
      • getEof

        public java.lang.Boolean getEof()
        Set if the end-of-file condition occured while reading.