Packages

object RedisCodec extends Serializable

Source
data.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisCodec
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. val Ascii: RedisCodec[String, String]
  5. val Bytes: RedisCodec[Array[Byte], Array[Byte]]
  6. val Utf8: RedisCodec[String, String]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  9. def decryptSupplier[F[_]](key: SecretKeySpec)(implicit arg0: Sync[F]): F[CipherSupplier]

    It creates a CipherSupplier given a secret key for decryption.

    It creates a CipherSupplier given a secret key for decryption.

    A CipherSupplier is needed for RedisCodec.secure

  10. def deflate[K, V](codec: RedisCodec[K, V]): RedisCodec[K, V]

    It compresses every value sent to Redis and it decompresses every value read from Redis using the DEFLATE compression algorithm.

  11. def encryptSupplier[F[_]](key: SecretKeySpec)(implicit arg0: Sync[F]): F[CipherSupplier]

    It creates a CipherSupplier given a secret key for encryption.

    It creates a CipherSupplier given a secret key for encryption.

    A CipherSupplier is needed for RedisCodec.secure

  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  15. def gzip[K, V](codec: RedisCodec[K, V]): RedisCodec[K, V]

    It compresses every value sent to Redis and it decompresses every value read from Redis using the GZIP compression algorithm.

  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  21. def secure[K, V](codec: RedisCodec[K, V], encrypt: CipherSupplier, decrypt: CipherSupplier): RedisCodec[K, V]

    It encrypts every value sent to Redis and it decrypts every value read from Redis using the supplied CipherSuppliers.

  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

    (Since version 9)

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped