Packages

t

swaydb

MapT

trait MapT[K, V, F, BAG[_]] extends Source[K, (K, V), BAG] with SetMapT[K, V, BAG]

Base trait for a basic SwayDB Map type.

Self Type
MapT[K, V, F, BAG]
Linear Supertypes
SetMapT[K, V, BAG], Source[K, (K, V), BAG], Stream[(K, V), BAG], 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. All

Abstract Value Members

  1. abstract def applyFunction(from: K, to: K, function: F)(implicit evd: <:<[F, PureFunction.Map[K, V]]): BAG[OK]
  2. abstract def applyFunction(key: K, function: F)(implicit evd: <:<[F, PureFunction.Map[K, V]]): BAG[OK]
  3. abstract def asScala: scala.collection.mutable.Map[K, V]
    Definition Classes
    SetMapT
  4. abstract def clearAppliedAndRegisteredFunctions(): BAG[Iterable[String]]
  5. abstract def clearAppliedFunctions(): BAG[Iterable[String]]
  6. abstract def clearKeyValues(): BAG[OK]
    Definition Classes
    SetMapT
  7. abstract def close(): BAG[Unit]
    Definition Classes
    SetMapT
  8. abstract def commit(prepare: Iterator[Prepare[K, V, F]]): BAG[OK]
  9. abstract def commit(prepare: Iterable[Prepare[K, V, F]]): BAG[OK]
  10. abstract def commit(prepare: Stream[Prepare[K, V, F], BAG]): BAG[OK]
  11. abstract def commit(prepare: Prepare[K, V, F]*): BAG[OK]
  12. abstract def contains(key: K): BAG[Boolean]
    Definition Classes
    SetMapT
  13. abstract def delete(): BAG[Unit]
    Definition Classes
    SetMapT
  14. abstract def expiration(key: K): BAG[Option[Deadline]]
    Definition Classes
    SetMapT
  15. abstract def expire(keys: Iterator[(K, Deadline)]): BAG[OK]
  16. abstract def expire(keys: Iterable[(K, Deadline)]): BAG[OK]
  17. abstract def expire(keys: Stream[(K, Deadline), BAG]): BAG[OK]
  18. abstract def expire(keys: (K, Deadline)*): BAG[OK]
  19. abstract def expire(from: K, to: K, at: Deadline): BAG[OK]
  20. abstract def expire(from: K, to: K, after: FiniteDuration): BAG[OK]
  21. abstract def expire(key: K, at: Deadline): BAG[OK]
    Definition Classes
    SetMapT
  22. abstract def expire(key: K, after: FiniteDuration): BAG[OK]
    Definition Classes
    SetMapT
  23. abstract def get(key: K): BAG[Option[V]]
    Definition Classes
    SetMapT
  24. abstract def getKey(key: K): BAG[Option[K]]
    Definition Classes
    SetMapT
  25. abstract def getKeyDeadline[BAG[_]](key: K, bag: Bag[BAG]): BAG[Option[(K, Option[Deadline])]]
  26. abstract def getKeyDeadline(key: K): BAG[Option[(K, Option[Deadline])]]
  27. abstract def getKeyValue(key: K): BAG[Option[(K, V)]]
    Definition Classes
    SetMapT
  28. abstract def getKeyValueDeadline[BAG[_]](key: K, bag: Bag[BAG]): BAG[Option[((K, V), Option[Deadline])]]
  29. abstract def head: BAG[Option[(K, V)]]
    Definition Classes
    SetMapT
  30. abstract def isEmpty: BAG[Boolean]
    Definition Classes
    SetMapT
  31. abstract def isFunctionApplied(function: F)(implicit evd: <:<[F, PureFunction.Map[K, V]]): Boolean
  32. abstract def keySize(key: K): Int
  33. abstract def keys: Stream[K, BAG]
    Definition Classes
    SetMapT
  34. abstract def last: BAG[Option[(K, V)]]
    Definition Classes
    SetMapT
  35. abstract def levelMeter(levelNumber: Int): Option[LevelMeter]
    Definition Classes
    SetMapT
  36. abstract def levelZeroMeter: LevelZeroMeter
    Definition Classes
    SetMapT
  37. abstract def mightContain(key: K): BAG[Boolean]
    Definition Classes
    SetMapT
  38. abstract def mightContainFunction(function: F)(implicit evd: <:<[F, PureFunction.Map[K, V]]): BAG[Boolean]
  39. abstract def nonEmpty: BAG[Boolean]
    Definition Classes
    SetMapT
  40. abstract def path: Path
    Definition Classes
    SetMapT
  41. abstract def put(keyValues: Iterator[(K, V)]): BAG[OK]
    Definition Classes
    SetMapT
  42. abstract def put(keyValues: Iterable[(K, V)]): BAG[OK]
    Definition Classes
    SetMapT
  43. abstract def put(keyValues: Stream[(K, V), BAG]): BAG[OK]
    Definition Classes
    SetMapT
  44. abstract def put(keyValues: (K, V)*): BAG[OK]
    Definition Classes
    SetMapT
  45. abstract def put(key: K, value: V, expireAt: Deadline): BAG[OK]
    Definition Classes
    SetMapT
  46. abstract def put(key: K, value: V, expireAfter: FiniteDuration): BAG[OK]
    Definition Classes
    SetMapT
  47. abstract def put(key: K, value: V): BAG[OK]
    Definition Classes
    SetMapT
  48. abstract def remove(from: K, to: K): BAG[OK]
  49. abstract def remove(keys: Iterator[K]): BAG[OK]
    Definition Classes
    SetMapT
  50. abstract def remove(keys: Iterable[K]): BAG[OK]
    Definition Classes
    SetMapT
  51. abstract def remove(keys: Stream[K, BAG]): BAG[OK]
    Definition Classes
    SetMapT
  52. abstract def remove(keys: K*): BAG[OK]
    Definition Classes
    SetMapT
  53. abstract def remove(key: K): BAG[OK]
    Definition Classes
    SetMapT
  54. abstract def sizeOfBloomFilterEntries: BAG[Int]
    Definition Classes
    SetMapT
  55. abstract def sizeOfSegments: Long
    Definition Classes
    SetMapT
  56. abstract def timeLeft(key: K): BAG[Option[FiniteDuration]]
    Definition Classes
    SetMapT
  57. abstract def toBag[X[_]](implicit bag: Bag[X]): SetMapT[K, V, X]
    Definition Classes
    SetMapT
  58. abstract def update(keyValues: Iterator[(K, V)]): BAG[OK]
  59. abstract def update(keyValues: Iterable[(K, V)]): BAG[OK]
  60. abstract def update(keyValues: Stream[(K, V), BAG]): BAG[OK]
  61. abstract def update(keyValues: (K, V)*): BAG[OK]
  62. abstract def update(from: K, to: K, value: V): BAG[OK]
  63. abstract def update(key: K, value: V): BAG[OK]
  64. abstract def valueSize(value: V): Int
  65. abstract def values: Stream[V, BAG]
    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, (K, V), BAG]
    Definition Classes
    Source
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. implicit val bag: Bag[BAG]
    Definition Classes
    Stream
  7. def before(key: K): Source[K, (K, V), BAG]
    Definition Classes
    Source
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def collect[B](pf: PartialFunction[(K, V), B]): Stream[B, BAG]
    Definition Classes
    Stream
  10. def collectFirst[B](pf: PartialFunction[(K, V), B]): BAG[Option[B]]
    Definition Classes
    Stream
  11. def collectFirstOrNull[B](pf: PartialFunction[(K, V), B]): BAG[B]
    Definition Classes
    Stream
  12. def count: BAG[Int]
    Definition Classes
    Stream
  13. def count(f: ((K, V)) ⇒ Boolean): BAG[Int]
    Definition Classes
    Stream
  14. def drop(count: Int): Stream[(K, V), BAG]
    Definition Classes
    Stream
  15. def dropWhile(f: ((K, V)) ⇒ Boolean): Stream[(K, V), BAG]
    Definition Classes
    Stream
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def filter(f: ((K, V)) ⇒ Boolean): Stream[(K, V), BAG]
    Definition Classes
    Stream
  19. def filterNot(f: ((K, V)) ⇒ Boolean): Stream[(K, V), BAG]
    Definition Classes
    Stream
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def flatMap[B](f: ((K, V)) ⇒ Stream[B, BAG]): Stream[B, BAG]
    Definition Classes
    Stream
  22. def flatten[B](implicit bag: Bag[BAG], evd: <:<[(K, V), BAG[B]]): Stream[B, BAG]
    Definition Classes
    Stream
  23. def foldLeft[B](initial: B)(f: (B, (K, V)) ⇒ B): BAG[B]
    Definition Classes
    Stream
  24. def foldLeftFlatten[B](initial: B)(f: (B, (K, V)) ⇒ BAG[B]): BAG[B]
    Definition Classes
    Stream
  25. def foreach(f: ((K, V)) ⇒ Unit): BAG[Unit]
    Definition Classes
    Stream
  26. def from(key: K): Source[K, (K, V), BAG]
    Definition Classes
    Source
  27. def fromOrAfter(key: K): Source[K, (K, V), BAG]
    Definition Classes
    Source
  28. def fromOrBefore(key: K): Source[K, (K, V), BAG]
    Definition Classes
    Source
  29. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. def headOption: BAG[Option[(K, V)]]
    Definition Classes
    Stream
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. def iterator[BAG[_]](implicit bag: Sync[BAG]): Iterator[BAG[(K, V)]]
    Definition Classes
    Stream
  34. def lastOption: BAG[Option[(K, V)]]
    Definition Classes
    Stream
  35. def map[B](f: ((K, V)) ⇒ B): Stream[B, BAG]
    Definition Classes
    Stream
  36. def mapFlatten[B](f: ((K, V)) ⇒ BAG[B]): Stream[B, BAG]
    Definition Classes
    Stream
  37. def materialize: BAG[ListBuffer[(K, V)]]
    Definition Classes
    Stream
  38. def materialize[C[_]](implicit builder: Builder[(K, V), C[(K, V)]]): BAG[C[(K, V)]]
    Definition Classes
    Stream
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. def partition(f: ((K, V)) ⇒ Boolean): BAG[(ListBuffer[(K, V)], ListBuffer[(K, V)])]
    Definition Classes
    Stream
  43. def put(key: K, value: V, expireAt: Option[Deadline]): BAG[OK]
    Definition Classes
    SetMapT
  44. def reverse: Source[K, (K, V), BAG]
    Definition Classes
    Source
  45. def stream: Source[K, (K, V), BAG]
    Definition Classes
    Source
  46. def streamer: Streamer[(K, V), BAG]
    Definition Classes
    Stream
  47. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  48. def take(count: Int): Stream[(K, V), BAG]
    Definition Classes
    Stream
  49. def takeWhile(f: ((K, V)) ⇒ Boolean): Stream[(K, V), BAG]
    Definition Classes
    Stream
  50. def toString(): String
    Definition Classes
    AnyRef → Any
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from SetMapT[K, V, BAG]

Inherited from Source[K, (K, V), BAG]

Inherited from Stream[(K, V), BAG]

Inherited from AnyRef

Inherited from Any

Ungrouped