trait HashCommands[F[_], K, V] extends HashGetter[F, K, V] with HashSetter[F, K, V] with HashIncrement[F, K, V] with HashExpire[F, K] with HashDelete[F, K, V]

Source
hashes.scala
Linear Supertypes
HashDelete[F, K, V], HashExpire[F, K], HashIncrement[F, K, V], HashSetter[F, K, V], HashGetter[F, K, V], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HashCommands
  2. HashDelete
  3. HashExpire
  4. HashIncrement
  5. HashSetter
  6. HashGetter
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def hDel(key: K, field: K, fields: K*): F[Long]
    Definition Classes
    HashDelete
  2. abstract def hExists(key: K, field: K): F[Boolean]
  3. abstract def hExpire(key: K, expiresIn: FiniteDuration, args: ExpireExistenceArg, fields: K*): F[List[Long]]
    Definition Classes
    HashExpire
  4. abstract def hExpire(key: K, expiresIn: FiniteDuration, fields: K*): F[List[Long]]
    Definition Classes
    HashExpire
  5. abstract def hExpireAt(key: K, expireAt: Instant, args: ExpireExistenceArg, fields: K*): F[List[Long]]
    Definition Classes
    HashExpire
  6. abstract def hExpireAt(key: K, expireAt: Instant, fields: K*): F[List[Long]]
    Definition Classes
    HashExpire
  7. abstract def hExpireTime(key: K, fields: K*): F[List[Option[Instant]]]
    Definition Classes
    HashExpire
  8. abstract def hGet(key: K, field: K): F[Option[V]]
    Definition Classes
    HashGetter
  9. abstract def hGetAll(key: K): F[Map[K, V]]
    Definition Classes
    HashGetter
  10. abstract def hGetDel(key: K, field: K, fields: K*): F[List[Option[V]]]
    Definition Classes
    HashDelete
  11. abstract def hGetEx(key: K, getExArg: HGetExArgs, field: K, fields: K*): F[List[Option[V]]]
    Definition Classes
    HashGetter
  12. abstract def hIncrBy(key: K, field: K, amount: Long): F[Long]
    Definition Classes
    HashIncrement
  13. abstract def hIncrByFloat(key: K, field: K, amount: Double): F[Double]
    Definition Classes
    HashIncrement
  14. abstract def hKeys(key: K): F[List[K]]
    Definition Classes
    HashGetter
  15. abstract def hLen(key: K): F[Long]
    Definition Classes
    HashGetter
  16. abstract def hPersist(key: K, fields: K*): F[List[Boolean]]
    Definition Classes
    HashExpire
  17. abstract def hScan(key: K, cursor: MapScanCursor[K, V], scanArgs: ScanArgs): F[MapScanCursor[K, V]]
    Definition Classes
    HashGetter
  18. abstract def hScan(key: K, scanArgs: ScanArgs): F[MapScanCursor[K, V]]
    Definition Classes
    HashGetter
  19. abstract def hScan(key: K, cursor: MapScanCursor[K, V]): F[MapScanCursor[K, V]]
    Definition Classes
    HashGetter
  20. abstract def hScan(key: K): F[MapScanCursor[K, V]]
    Definition Classes
    HashGetter
  21. abstract def hScanNoValues(key: K, cursor: KeyScanCursor[K], scanArgs: ScanArgs): F[KeyScanCursor[K]]
    Definition Classes
    HashGetter
  22. abstract def hScanNoValues(key: K, scanArgs: ScanArgs): F[KeyScanCursor[K]]
    Definition Classes
    HashGetter
  23. abstract def hScanNoValues(key: K, cursor: KeyScanCursor[K]): F[KeyScanCursor[K]]
    Definition Classes
    HashGetter
  24. abstract def hScanNoValues(key: K): F[KeyScanCursor[K]]
    Definition Classes
    HashGetter
  25. abstract def hSet(key: K, fieldValues: Map[K, V]): F[Long]
    Definition Classes
    HashSetter
  26. abstract def hSet(key: K, field: K, value: V): F[Boolean]
    Definition Classes
    HashSetter
  27. abstract def hSetNx(key: K, field: K, value: V): F[Boolean]
    Definition Classes
    HashSetter
  28. abstract def hStrLen(key: K, field: K): F[Long]
    Definition Classes
    HashGetter
  29. abstract def hVals(key: K): F[List[V]]
    Definition Classes
    HashGetter
  30. abstract def hmGet(key: K, field: K, fields: K*): F[Map[K, V]]
    Definition Classes
    HashGetter
  31. abstract def hpExpireTime(key: K, fields: K*): F[List[Option[Instant]]]
    Definition Classes
    HashExpire
  32. abstract def hpttl(key: K, fields: K*): F[List[Option[FiniteDuration]]]
    Definition Classes
    HashExpire
  33. abstract def httl(key: K, fields: K*): F[List[Option[FiniteDuration]]]
    Definition Classes
    HashExpire
  34. abstract def hmSet(key: K, fieldValues: Map[K, V]): F[Unit]
    Definition Classes
    HashSetter
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.1) In favor of hSet(key: K, fieldValues: Map[K, V])

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toany2stringadd[HashCommands[F, K, V]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (HashCommands[F, K, V], B)
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toArrowAssoc[HashCommands[F, K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  8. def ensuring(cond: (HashCommands[F, K, V]) => Boolean, msg: => Any): HashCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toEnsuring[HashCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (HashCommands[F, K, V]) => Boolean): HashCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toEnsuring[HashCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: => Any): HashCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toEnsuring[HashCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): HashCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toEnsuring[HashCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  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 hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. 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)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toStringFormat[HashCommands[F, K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (HashCommands[F, K, V], B)
    Implicit
    This member is added by an implicit conversion from HashCommands[F, K, V] toArrowAssoc[HashCommands[F, K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from HashDelete[F, K, V]

Inherited from HashExpire[F, K]

Inherited from HashIncrement[F, K, V]

Inherited from HashSetter[F, K, V]

Inherited from HashGetter[F, K, V]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromHashCommands[F, K, V] to any2stringadd[HashCommands[F, K, V]]

Inherited by implicit conversion StringFormat fromHashCommands[F, K, V] to StringFormat[HashCommands[F, K, V]]

Inherited by implicit conversion Ensuring fromHashCommands[F, K, V] to Ensuring[HashCommands[F, K, V]]

Inherited by implicit conversion ArrowAssoc fromHashCommands[F, K, V] to ArrowAssoc[HashCommands[F, K, V]]

Ungrouped