Packages

c

org.apache.spark.serializer

SerializationStream

abstract class SerializationStream extends Closeable

Developer API

A stream for writing serialized objects.

Annotations
@DeveloperApi()
Source
Serializer.scala
Linear Supertypes
Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SerializationStream
  2. Closeable
  3. AutoCloseable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SerializationStream()

Abstract Value Members

  1. abstract def close(): Unit
    Definition Classes
    SerializationStream → Closeable → AutoCloseable
  2. abstract def flush(): Unit
  3. abstract def writeObject[T](t: T)(implicit arg0: ClassTag[T]): SerializationStream

    The most general-purpose method to write an object.

Concrete Value Members

  1. def writeAll[T](iter: Iterator[T])(implicit arg0: ClassTag[T]): SerializationStream
  2. def writeKey[T](key: T)(implicit arg0: ClassTag[T]): SerializationStream

    Writes the object representing the key of a key-value pair.

  3. def writeValue[T](value: T)(implicit arg0: ClassTag[T]): SerializationStream

    Writes the object representing the value of a key-value pair.