Packages

trait MapT[K, V, F] extends SetMapT[K, V]

Base trait for a basic SwayDB Map type.

Self Type
MapT[K, V, F]
Linear Supertypes
SetMapT[K, V], Source[K, KeyVal[K, V]], Stream[KeyVal[K, V]], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapT
  2. SetMapT
  3. Source
  4. Stream
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def applyFunction(from: K, to: K, function: F): Unit
  2. abstract def applyFunction(key: K, function: F): Unit
  3. abstract def asJava: java.util.Map[K, V]
    Definition Classes
    SetMapT
  4. abstract def asScalaStream: swaydb.Source[K, KeyVal[K, V], Less]
    Definition Classes
    Source → Stream
  5. abstract def clearAppliedAndRegisteredFunctions(): Iterable[String]
  6. abstract def clearAppliedFunctions(): Iterable[String]
  7. abstract def clearKeyValues(): Unit
    Definition Classes
    SetMapT
  8. abstract def close(): Unit
    Definition Classes
    SetMapT
  9. abstract def commit(prepare: Iterable[Prepare[K, V, F]]): Unit
  10. abstract def commit(prepare: Stream[Prepare[K, V, F]]): Unit
  11. abstract def contains(key: K): Boolean
    Definition Classes
    SetMapT
  12. abstract def delete(): Unit
    Definition Classes
    SetMapT
  13. abstract def expiration(key: K): Optional[Expiration]
    Definition Classes
    SetMapT
  14. abstract def expire(keys: Iterator[Pair[K, Duration]]): Unit
  15. abstract def expire(keys: Iterable[Pair[K, Duration]]): Unit
  16. abstract def expire(keys: Stream[Pair[K, Duration]]): Unit
  17. abstract def expire(from: K, to: K, after: Duration): Unit
  18. abstract def expire(key: K, after: Duration): Unit
    Definition Classes
    SetMapT
  19. abstract def get(key: K): Optional[V]
    Definition Classes
    SetMapT
  20. abstract def getKey(key: K): Optional[K]
    Definition Classes
    SetMapT
  21. abstract def getKeyDeadline(key: K): Optional[Pair[K, Optional[Expiration]]]
  22. abstract def getKeyValue(key: K): Optional[KeyVal[K, V]]
    Definition Classes
    SetMapT
  23. abstract def getKeyValueDeadline(key: K): Optional[Pair[KeyVal[K, V], Optional[Expiration]]]
  24. abstract def head: Optional[KeyVal[K, V]]
    Definition Classes
    SetMapT
  25. abstract def isEmpty: Boolean
    Definition Classes
    SetMapT
  26. abstract def isFunctionApplied(functionId: F): Boolean
  27. abstract def keySize(key: K): Int
  28. abstract def keys: Stream[K]
    Definition Classes
    SetMapT
  29. abstract def last: Optional[KeyVal[K, V]]
    Definition Classes
    SetMapT
  30. abstract def levelMeter(levelNumber: Int): Optional[LevelMeter]
    Definition Classes
    SetMapT
  31. abstract def levelZeroMeter: LevelZeroMeter
    Definition Classes
    SetMapT
  32. abstract def mightContain(key: K): Boolean
    Definition Classes
    SetMapT
  33. abstract def mightContainFunction(function: F): Boolean
  34. abstract def nonEmpty: Boolean
    Definition Classes
    SetMapT
  35. abstract def path: Path
    Definition Classes
    SetMapT
  36. abstract def put(keyValues: Iterator[KeyVal[K, V]]): Unit
    Definition Classes
    SetMapT
  37. abstract def put(keyValues: Iterable[KeyVal[K, V]]): Unit
    Definition Classes
    SetMapT
  38. abstract def put(keyValues: Stream[KeyVal[K, V]]): Unit
    Definition Classes
    SetMapT
  39. abstract def put(key: K, value: V, expireAfter: Duration): Unit
    Definition Classes
    SetMapT
  40. abstract def put(key: K, value: V): Unit
    Definition Classes
    SetMapT
  41. abstract def remove(from: K, to: K): Unit
  42. abstract def remove(keys: Iterator[K]): Unit
    Definition Classes
    SetMapT
  43. abstract def remove(keys: Iterable[K]): Unit
    Definition Classes
    SetMapT
  44. abstract def remove(keys: Stream[K]): Unit
    Definition Classes
    SetMapT
  45. abstract def remove(key: K): Unit
    Definition Classes
    SetMapT
  46. abstract def sizeOfBloomFilterEntries: Int
    Definition Classes
    SetMapT
  47. abstract def sizeOfSegments: Long
    Definition Classes
    SetMapT
  48. abstract def timeLeft(key: K): Optional[Duration]
    Definition Classes
    SetMapT
  49. abstract def update(keyValues: Iterator[KeyVal[K, V]]): Unit
  50. abstract def update(keyValues: Iterable[KeyVal[K, V]]): Unit
  51. abstract def update(keyValues: Stream[KeyVal[K, V]]): Unit
  52. abstract def update(from: K, to: K, value: V): Unit
  53. abstract def update(key: K, value: V): Unit
  54. abstract def valueSize(value: V): Int
  55. abstract def values: Stream[V]
    Definition Classes
    SetMapT

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. def after(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def before(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def count: Int
    Definition Classes
    Stream
  9. def count(predicate: Predicate[KeyVal[K, V]]): Int
    Definition Classes
    Stream
  10. def drop(count: Int): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  11. def dropWhile(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def filter(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  15. def filterNot(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. def flatMap[B](function: JavaFunction[KeyVal[K, V], Stream[B]]): Stream[B]
    Definition Classes
    Stream
  18. def foldLeft[B](initial: B, function: BiFunction[B, KeyVal[K, V], B]): B
    Definition Classes
    Stream
  19. def forEach(consumer: Consumer[KeyVal[K, V]]): Unit
    Definition Classes
    Stream
  20. def from(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  21. def fromOrAfter(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  22. def fromOrBefore(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. def headOption: Optional[KeyVal[K, V]]
    Definition Classes
    Stream
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def iterator(): Iterator[KeyVal[K, V]]
    Definition Classes
    Stream
  28. def lastOption: Optional[KeyVal[K, V]]
    Definition Classes
    Stream
  29. def map[B](function: JavaFunction[KeyVal[K, V], B]): Stream[B]
    Definition Classes
    Stream
  30. def materialize: List[KeyVal[K, V]]
    Definition Classes
    Stream
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. def partition[B](predicate: Predicate[KeyVal[K, V]]): Pair[List[KeyVal[K, V]], List[KeyVal[K, V]]]
    Definition Classes
    Stream
  35. def reverse: Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  36. def stream: Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def take(count: Int): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  39. def takeWhile(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from SetMapT[K, V]

Inherited from Source[K, KeyVal[K, V]]

Inherited from Stream[KeyVal[K, V]]

Inherited from AnyRef

Inherited from Any

Ungrouped