Packages

class Serializer extends Object with StObject

Annotations
@JSType() @JSImport("v8", "Serializer") @native()
Source
v8Mod.scala
Linear Supertypes
StObject, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Serializer
  2. StObject
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Serializer()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  9. def hasOwnProperty(v: scala.Predef.String): Boolean
    Definition Classes
    Object
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  16. def propertyIsEnumerable(v: scala.Predef.String): Boolean
    Definition Classes
    Object
  17. def releaseBuffer(): Buffer

    Returns the stored internal buffer.

    Returns the stored internal buffer. This serializer should not be used once the buffer is released. Calling this method results in undefined behavior if a previous write has failed.

  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toLocaleString(): scala.Predef.String
    Definition Classes
    Object
  20. def toString(): java.lang.String
    Definition Classes
    AnyRef → Any
  21. def transferArrayBuffer(id: Double, arrayBuffer: ArrayBuffer): Unit

    Marks an ArrayBuffer as having its contents transferred out of band.\ Pass the corresponding ArrayBuffer in the deserializing context to deserializer.transferArrayBuffer().

  22. def valueOf(): Any
    Definition Classes
    Object
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. def writeDouble(value: Double): Unit

    Write a JS number value.

  27. def writeHeader(): Unit

    Writes out a header, which includes the serialization format version.

  28. def writeRawBytes(buffer: TypedArray): Unit

    Write raw bytes into the serializer’s internal buffer.

    Write raw bytes into the serializer’s internal buffer. The deserializer will require a way to compute the length of the buffer.

  29. def writeUint32(value: Double): Unit

    Write a raw 32-bit unsigned integer.

  30. def writeUint64(hi: Double, lo: Double): Unit

    Write a raw 64-bit unsigned integer, split into high and low 32-bit parts.

  31. def writeValue(val: Any): Boolean

    Serializes a JavaScript value and adds the serialized representation to the internal buffer.

    Serializes a JavaScript value and adds the serialized representation to the internal buffer. This throws an error if value cannot be serialized.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from StObject

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped