Interface SerializationResult


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

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

    • getValue

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

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