Interface SerializationResult


public interface SerializationResult
Container for holding serialization results. Use getValue() to get the implementation-specific result.
  • Method Summary

    Modifier and Type
    Method
    Description
    java.lang.Object
    The implementation-specific serialization result.
    void
    writeTo(java.io.OutputStream argOutputStream)
    Writes the result to the given output stream.
  • Method Details

    • getValue

      java.lang.Object getValue()
      The implementation-specific serialization result.
      Returns:
      serialization result
    • writeTo

      void writeTo(java.io.OutputStream argOutputStream) throws java.io.IOException
      Writes the result to the given output stream.
      Parameters:
      argOutputStream -
      Throws:
      java.io.IOException