Packages

t

swaydb

SetMapT

trait SetMapT[K, V, F, BAG[_]] extends Sweepable[BAG]

Base trait for a basic SwayDB SetMap type.

Linear Supertypes
Sweepable[BAG], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SetMapT
  2. Sweepable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def after(key: K): SetMapT[K, V, F, BAG]
  2. abstract def asScala: scala.collection.mutable.Map[K, V]
  3. abstract def before(key: K): SetMapT[K, V, F, BAG]
  4. abstract def clearKeyValues(): BAG[OK]
  5. abstract def close(): BAG[Unit]
    Definition Classes
    SetMapT → Sweepable
  6. abstract def contains(key: K): BAG[Boolean]
  7. abstract def delete(): BAG[Unit]
    Definition Classes
    SetMapT → Sweepable
  8. abstract def expiration(key: K): BAG[Option[Deadline]]
  9. abstract def expire(key: K, at: Deadline): BAG[OK]
  10. abstract def expire(key: K, after: FiniteDuration): BAG[OK]
  11. abstract def from(key: K): SetMapT[K, V, F, BAG]
  12. abstract def fromOrAfter(key: K): SetMapT[K, V, F, BAG]
  13. abstract def fromOrBefore(key: K): SetMapT[K, V, F, BAG]
  14. abstract def get(key: K): BAG[Option[V]]
  15. abstract def getKey(key: K): BAG[Option[K]]
  16. abstract def getKeyValue(key: K): BAG[Option[(K, V)]]
  17. abstract def headOption: BAG[Option[(K, V)]]
  18. abstract def headOrNull: BAG[(K, V)]
  19. abstract def isEmpty: BAG[Boolean]
  20. abstract def iterator[BAG[_]](implicit bag: Sync[BAG]): Iterator[BAG[(K, V)]]
  21. abstract def lastOption: BAG[Option[(K, V)]]
  22. abstract def levelMeter(levelNumber: Int): Option[LevelMeter]
  23. abstract def levelZeroMeter: LevelZeroMeter
  24. abstract def mightContain(key: K): BAG[Boolean]
  25. abstract def nonEmpty: BAG[Boolean]
  26. abstract def path: Path
  27. abstract def put(keyValues: Iterator[(K, V)]): BAG[OK]
  28. abstract def put(keyValues: Iterable[(K, V)]): BAG[OK]
  29. abstract def put(keyValues: Stream[(K, V)]): BAG[OK]
  30. abstract def put(keyValues: (K, V)*): BAG[OK]
  31. abstract def put(key: K, value: V, expireAt: Deadline): BAG[OK]
  32. abstract def put(key: K, value: V, expireAfter: FiniteDuration): BAG[OK]
  33. abstract def put(key: K, value: V): BAG[OK]
  34. abstract def remove(keys: Iterator[K]): BAG[OK]
  35. abstract def remove(keys: Iterable[K]): BAG[OK]
  36. abstract def remove(keys: Stream[K]): BAG[OK]
  37. abstract def remove(keys: K*): BAG[OK]
  38. abstract def remove(key: K): BAG[OK]
  39. abstract def reverse: SetMapT[K, V, F, BAG]
  40. abstract def sizeOfBloomFilterEntries: BAG[Int]
  41. abstract def sizeOfSegments: Long
  42. abstract def stream: Stream[(K, V)]
  43. abstract def timeLeft(key: K): BAG[Option[FiniteDuration]]
  44. abstract def toBag[X[_]](implicit bag: Bag[X]): SetMapT[K, V, F, X]

Concrete 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()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    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. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def put(key: K, value: V, expireAt: Option[Deadline]): BAG[OK]
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    SetMapT → AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Sweepable[BAG]

Inherited from AnyRef

Inherited from Any

Ungrouped