Packages

trait ObjectOutput extends SequentialOutput

Represents an abstract sink for serialization of string-to-value mappings. Any ObjectOutput instance must be assumed to be stateful and used in strictly sequential manner. After all key-value pairs have been written, finish() must be called to explicitly mark that the object is complete.

ObjectOutput MUST preserve information about the order in which fields are written. ObjectInput is required to read fields in exactly the same order as ObjectOutput writes them.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ObjectOutput
  2. SequentialOutput
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def finish(): Unit

    Indicates that all elements or fields in this SequentialOutput have been written.

    Indicates that all elements or fields in this SequentialOutput have been written. This method MUST always be called after list/object writing has been finished.

    Definition Classes
    SequentialOutput
  2. abstract def getClass(): Class[_]
    Definition Classes
    Any
  3. abstract def writeField(key: String): Output

    Returns an Output representing value mapped to given string key.

    Returns an Output representing value mapped to given string key. This Output instance must be fully used before calling writeField next time. That means, one can NOT simultaneously use multiple instances of Output returned by subsequent calls to this method.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def equals(arg0: Any): Boolean
    Definition Classes
    Any
  6. def hashCode(): Int
    Definition Classes
    Any
  7. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  8. def toString(): String
    Definition Classes
    Any

Inherited from SequentialOutput

Inherited from Any

Ungrouped