Packages

final class RedisDataOutput extends OutputAndSimpleOutput

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisDataOutput
  2. OutputAndSimpleOutput
  3. SimpleOutput
  4. Output
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RedisDataOutput(consumer: (ByteString) ⇒ Unit)

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def keepsMetadata(metadata: InputMetadata[_]): Boolean

    Determines whether serialization format implemented by this Output preserves particular arbitrary "metadata" which is identified by InputMetadata which is usually an object (e.g.

    Determines whether serialization format implemented by this Output preserves particular arbitrary "metadata" which is identified by InputMetadata which is usually an object (e.g. companion object of metadata value type T). An example of InputMetadata is JsonType supported by JsonStringOutput.

    If this method returns true then codec may optimize its encoded format and assume that a corresponding Input implementation will return a non-empty Opt from its readMetadata implementation when passed the same InputMetadata identifier. If this method returns false then this Output does not support this medatata type and codec should fall back to some other serialization strategy.

    Definition Classes
    Output
  13. def legacyOptionEncoding: Boolean

    This ugly workaround has been introduced when standard Option encoding changed from zero-or-one element list encoding to unwrapped-or-null encoding which effectively disallowed serializing null and Some(null).

    This ugly workaround has been introduced when standard Option encoding changed from zero-or-one element list encoding to unwrapped-or-null encoding which effectively disallowed serializing null and Some(null). If some Output implementation still wants to use the list encoding, it may do it by overriding this method and returning true.

    Definition Classes
    Output
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  22. def writeBigDecimal(bigDecimal: BigDecimal): Unit

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    RedisDataOutputSimpleOutput
  23. def writeBigInt(bigInt: BigInt): Unit

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    RedisDataOutputSimpleOutput
  24. def writeBinary(binary: Array[Byte]): Unit

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    RedisDataOutputSimpleOutput
  25. def writeBoolean(boolean: Boolean): Unit
    Definition Classes
    RedisDataOutputSimpleOutput
  26. def writeByte(byte: Byte): Unit
    Definition Classes
    SimpleOutput
  27. def writeChar(char: Char): Unit
    Definition Classes
    SimpleOutput
  28. def writeCustom[T](typeMarker: TypeMarker[T], value: T): Boolean

    Attempts to write some arbitrary custom "native" value that this output may or may not support.

    Attempts to write some arbitrary custom "native" value that this output may or may not support. The custom type is identified by an instance of TypeMarker which is usually an object (e.g. companion object of the custom T type itself). This way Input and Output implementations may support other native types than the ones supported by default by Input and Output interfaces.

    Codecs may use this method to optimize encoded format in case it it possible with particular Output implementation. GenCodec may generally assume that if this method returns true then corresponding Input will return a non-empty Opt from readCustom method.

    false returned by this method indicates that this output does not support this particular type. In such situation the codec must fall back to some other strategy. If the native type is supported but there was some error writing it then a WriteFailure should be thrown instead of returning false.

    Definition Classes
    Output
  29. def writeDouble(double: Double): Unit
    Definition Classes
    RedisDataOutputSimpleOutput
  30. def writeFloat(float: Float): Unit
    Definition Classes
    SimpleOutput
  31. def writeInt(int: Int): Unit
    Definition Classes
    RedisDataOutputSimpleOutput
  32. def writeList(): ListOutput
    Definition Classes
    RedisDataOutputOutput
  33. def writeLong(long: Long): Unit
    Definition Classes
    RedisDataOutputSimpleOutput
  34. def writeNull(): Unit
    Definition Classes
    RedisDataOutputOutput
  35. def writeObject(): ObjectOutput
    Definition Classes
    RedisDataOutputOutput
  36. def writeShort(short: Short): Unit
    Definition Classes
    SimpleOutput
  37. final def writeSimple(): SimpleOutput
    Definition Classes
    OutputAndSimpleOutputOutput
  38. def writeString(str: String): Unit

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    RedisDataOutputSimpleOutput
  39. def writeTimestamp(millis: Long): Unit
    Definition Classes
    SimpleOutput

Inherited from OutputAndSimpleOutput

Inherited from SimpleOutput

Inherited from Output

Inherited from AnyRef

Inherited from Any

Ungrouped