blueeyes.persistence.cache

Stage

trait Stage [K, V] extends Map[K, V] with FutureDeliveryStrategySequential

A stage is a particular kind of cache that is used for staging IO updates. Many kinds of IO updates can be combined (e.g. instead of writing a single log line to a file, you can collect ten lines and write them all at once). This has the capacity to greatly improve performance when IO is a limiting factor.

Built on a cache, stage supports standards eviction, settings such as time to idle, time to live, and maximum weighted capacity.

Stopping a stage evicts all entries from the stage. As part of shutdown, in order to avoid data loss, every stage should be stopped.

go to: companion
linear super types: FutureDeliveryStrategySequential, Map[K, V], MapLike[K, V, Map[K, V]], Cloneable[Map[K, V]], Shrinkable[K], Builder[(K, V), Map[K, V]], Growable[(K, V)], Map[K, V], MapLike[K, V, Map[K, V]], Subtractable[K, Map[K, V]], PartialFunction[K, V], (K) ⇒ V, Iterable[(K, V)], Iterable[(K, V)], IterableLike[(K, V), Map[K, V]], Equals, Traversable[(K, V)], Mutable, Traversable[(K, V)], GenericTraversableTemplate[(K, V), Iterable], TraversableLike[(K, V), Map[K, V]], TraversableOnce[(K, V)], FilterMonadic[(K, V), Map[K, V]], HasNewBuilder[(K, V), Map[K, V]], AnyRef, Any
known subclasses: MongoStage
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Stage
  2. FutureDeliveryStrategySequential
  3. Map
  4. MapLike
  5. Cloneable
  6. Shrinkable
  7. Builder
  8. Growable
  9. Map
  10. MapLike
  11. Subtractable
  12. PartialFunction
  13. Function1
  14. Iterable
  15. Iterable
  16. IterableLike
  17. Equals
  18. Traversable
  19. Mutable
  20. Traversable
  21. GenericTraversableTemplate
  22. TraversableLike
  23. TraversableOnce
  24. FilterMonadic
  25. HasNewBuilder
  26. AnyRef
  27. Any
Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Type Members

  1. type Self = Map[K, V]

    attributes: protected
    definition classes: TraversableLike

Value Members

  1. def != (arg0: AnyRef) : Boolean

    attributes: final
    definition classes: AnyRef
  2. def != (arg0: Any) : Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ## () : Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf [T0] () : T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf [T0] () : Boolean

    attributes: final
    definition classes: AnyRef
  6. def + [B1 >: B] (elem1: (K, B1), elem2: (K, B1), elems: (K, B1)*) : Map[K, B1]

    definition classes: MapLike → MapLike
  7. def + [B1 >: B] (kv: (K, B1)) : Map[K, B1]

    definition classes: MapLike → MapLike
  8. def ++ [B1 >: B] (xs: TraversableOnce[(K, B1)]) : Map[K, B1]

    definition classes: MapLike → MapLike
  9. def ++ [B >: A, That] (that: TraversableOnce[B])(implicit bf: CanBuildFrom[Map[K, V], B, That]) : That

    definition classes: TraversableLike
  10. def ++= (xs: TraversableOnce[(K, V)]) : Stage.this.type

    definition classes: Growable
  11. def += (kv: (K, V)) : This

    definition classes: Stage → MapLike → Builder → Growable
  12. def += (elem1: (K, V), elem2: (K, V), elems: (K, V)*) : Stage.this.type

    definition classes: Growable
  13. def - (elem1: K, elem2: K, elems: K*) : Map[K, V]

    definition classes: MapLike → Subtractable
  14. def - (key: K) : Map[K, V]

    definition classes: MapLike → MapLike → Subtractable
  15. def -- (xs: TraversableOnce[K]) : Map[K, V]

    definition classes: MapLike → Subtractable
  16. def --= (xs: TraversableOnce[K]) : Stage.this.type

    definition classes: Shrinkable
  17. def -= (key: K) : This

    Removes an entry from the stage.

    Removes an entry from the stage. Note: this does not call the evicter on the entry.

    definition classes: Stage → MapLike → Shrinkable
  18. def -= (elem1: K, elem2: K, elems: K*) : Stage.this.type

    definition classes: Shrinkable
  19. def /: [B] (z: B)(op: (B, (K, V)) ⇒ B) : B

    definition classes: TraversableOnce
  20. def :\ [B] (z: B)(op: ((K, V), B) ⇒ B) : B

    definition classes: TraversableOnce
  21. def == (arg0: AnyRef) : Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  22. def == (arg0: Any) : Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  23. def addString (b: StringBuilder, start: String, sep: String, end: String) : StringBuilder

    definition classes: MapLike → TraversableOnce
  24. def addString (b: StringBuilder) : StringBuilder

    definition classes: TraversableOnce
  25. def addString (b: StringBuilder, sep: String) : StringBuilder

    definition classes: TraversableOnce
  26. def andThen [C] (k: (V) ⇒ C) : PartialFunction[K, C]

    definition classes: PartialFunction → Function1
  27. def apply (key: K) : V

    definition classes: MapLike → Function1
  28. def asInstanceOf [T0] : T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expressionList(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  29. def canEqual (that: Any) : Boolean

    definition classes: IterableLike → Equals
  30. def clear () : Unit

    definition classes: MapLike → Builder → Growable
  31. def clone () : Map[K, V]

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    definition classes: MapLike → Cloneable → AnyRef
  32. def coalesce : (K, V, V) ⇒ V

    attributes: abstract
  33. def collect [B, That] (pf: PartialFunction[(K, V), B])(implicit bf: CanBuildFrom[Map[K, V], B, That]) : That

    definition classes: TraversableLike
  34. def companion : GenericCompanion[Iterable]

    definition classes: Iterable → Iterable → Traversable → Traversable → GenericTraversableTemplate
  35. def compose [A] (g: (A) ⇒ K) : (A) ⇒ V

    definition classes: Function1
  36. def contains (key: K) : Boolean

    definition classes: MapLike
  37. def copyToArray [B >: A] (xs: Array[B], start: Int, len: Int) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  38. def copyToArray [B >: A] (xs: Array[B]) : Unit

    definition classes: TraversableOnce
  39. def copyToArray [B >: A] (xs: Array[B], start: Int) : Unit

    definition classes: TraversableOnce
  40. def copyToBuffer [B >: A] (dest: Buffer[B]) : Unit

    definition classes: TraversableOnce
  41. def count (p: ((K, V)) ⇒ Boolean) : Int

    definition classes: TraversableOnce
  42. def default (key: K) : V

    definition classes: MapLike
  43. def drop (n: Int) : Map[K, V]

    definition classes: TraversableLike
  44. def dropRight (n: Int) : Map[K, V]

    definition classes: IterableLike
  45. def dropWhile (p: ((K, V)) ⇒ Boolean) : Map[K, V]

    definition classes: TraversableLike
  46. def elements : Iterator[(K, V)]

    definition classes: IterableLike
      deprecated:
    1. use iterator' instead

  47. def empty : Map[K, V]

    definition classes: Map → Map → MapLike
  48. def eq (arg0: AnyRef) : Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  49. def equals (that: Any) : Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: MapLike → Equals → AnyRef → Any
  50. def exists (p: ((K, V)) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  51. def filter (p: ((K, V)) ⇒ Boolean) : Map[K, V]

    definition classes: TraversableLike
  52. def filterKeys (p: (K) ⇒ Boolean) : Map[K, V]

    definition classes: MapLike
  53. def filterNot (p: ((K, V)) ⇒ Boolean) : Map[K, V]

    definition classes: MapLike → TraversableLike
  54. def finalize () : Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalizeand non-local returns and exceptions, are all platform dependent.

    attributes: protected
    definition classes: AnyRef
  55. def find (p: ((K, V)) ⇒ Boolean) : Option[(K, V)]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  56. def first : (K, V)

    definition classes: IterableLike
      deprecated:
    1. use head' instead

  57. def firstOption : Option[(K, V)]

    definition classes: IterableLike
      deprecated:
    1. use headOption' instead

  58. def flatMap [B, That] (f: ((K, V)) ⇒ Traversable[B])(implicit bf: CanBuildFrom[Map[K, V], B, That]) : That

    definition classes: TraversableLike → FilterMonadic
  59. def flatten [B] (implicit asTraversable: ((K, V)) ⇒ Traversable[B]) : Iterable[B]

    definition classes: GenericTraversableTemplate
  60. def foldLeft [B] (z: B)(op: (B, (K, V)) ⇒ B) : B

    definition classes: TraversableOnce
  61. def foldRight [B] (z: B)(op: ((K, V), B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  62. def forall (p: ((K, V)) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  63. def foreach [U] (f: ((K, V)) ⇒ U) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce → FilterMonadic
  64. implicit val futureDeliveryStrategy : FutureDeliveryStrategy

    attributes: implicit
    definition classes: FutureDeliveryStrategySequential
  65. def genericBuilder [B] : Builder[B, Iterable[B]]

    definition classes: GenericTraversableTemplate
  66. def get (key: K) : Option[V]

    definition classes: Stage → MapLike
  67. def getClass () : java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  68. def getLater (key: K) : Future[Option[V]]

    Asynchronously retrieves the value for the specified key.

    Asynchronously retrieves the value for the specified key.

  69. def getOrElse [B1 >: B] (key: K, default: ⇒ B1) : B1

    definition classes: MapLike
  70. def getOrElseUpdate (key: K, op: ⇒ V) : V

    definition classes: MapLike
  71. def groupBy [K] (f: ((K, V)) ⇒ K) : Map[K, Map[K, V]]

    definition classes: TraversableLike
  72. def grouped (size: Int) : Iterator[Map[K, V]]

    definition classes: IterableLike
  73. def hasDefiniteSize : Boolean

    definition classes: TraversableLike → TraversableOnce
  74. def hashCode () : Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: MapLike → AnyRef → Any
  75. def head : (K, V)

    definition classes: IterableLike → TraversableLike
  76. def headOption : Option[(K, V)]

    definition classes: TraversableLike
  77. def init : Map[K, V]

    definition classes: TraversableLike
  78. def isDefinedAt (key: K) : Boolean

    definition classes: MapLike → PartialFunction
  79. def isEmpty : Boolean

    definition classes: MapLike → IterableLike → TraversableLike → TraversableOnce
  80. def isInstanceOf [T0] : Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  81. def isTraversableAgain : Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  82. def iterator : Iterator[(K, V)]

    definition classes: Stage → MapLike → IterableLike
  83. def keySet : Set[K]

    definition classes: MapLike
  84. def keys : Iterable[K]

    definition classes: MapLike
  85. def keysIterator : Iterator[K]

    definition classes: MapLike
  86. def last : (K, V)

    definition classes: TraversableLike
  87. def lastOption : Option[(K, V)]

    definition classes: TraversableLike
  88. def lift : (K) ⇒ Option[V]

    definition classes: PartialFunction
  89. def map [B, That] (f: ((K, V)) ⇒ B)(implicit bf: CanBuildFrom[Map[K, V], B, That]) : That

    definition classes: TraversableLike → FilterMonadic
  90. def mapElements [C] (f: (V) ⇒ C) : Map[K, C]

    definition classes: MapLike
      deprecated:
    1. use mapValues' instead

  91. def mapResult [NewTo] (f: (Map[K, V]) ⇒ NewTo) : Builder[(K, V), NewTo]

    definition classes: Builder
  92. def mapValues [C] (f: (V) ⇒ C) : Map[K, C]

    definition classes: MapLike
  93. def max [B >: A] (implicit cmp: Ordering[B]) : (K, V)

    definition classes: TraversableOnce
  94. def min [B >: A] (implicit cmp: Ordering[B]) : (K, V)

    definition classes: TraversableOnce
  95. def mkString : String

    definition classes: TraversableOnce
  96. def mkString (sep: String) : String

    definition classes: TraversableOnce
  97. def mkString (start: String, sep: String, end: String) : String

    definition classes: TraversableOnce
  98. def ne (arg0: AnyRef) : Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  99. def newBuilder : Builder[(K, V), Map[K, V]]

    attributes: protected[this]
    definition classes: MapLike → MapLike → TraversableLike → HasNewBuilder
  100. def nonEmpty : Boolean

    definition classes: TraversableOnce
  101. def notify () : Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  102. def notifyAll () : Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  103. def orElse [A1 <: A, B1 >: B] (that: PartialFunction[A1, B1]) : PartialFunction[A1, B1]

    definition classes: PartialFunction
  104. def partition (p: ((K, V)) ⇒ Boolean) : (Map[K, V], Map[K, V])

    definition classes: TraversableLike
  105. def product [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  106. def projection : IterableView[(K, V), Map[K, V]]

    definition classes: IterableLike
      deprecated:
    1. use view' instead

  107. def put (key: K, value: V) : Option[V]

    definition classes: MapLike
  108. def reduceLeft [B >: A] (op: (B, (K, V)) ⇒ B) : B

    definition classes: TraversableOnce
  109. def reduceLeftOption [B >: A] (op: (B, (K, V)) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  110. def reduceRight [B >: A] (op: ((K, V), B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  111. def reduceRightOption [B >: A] (op: ((K, V), B) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  112. def remove (key: K) : Option[V]

    definition classes: MapLike
  113. def removeKey (key: K) : Option[V]

    definition classes: MapLike
      deprecated:
    1. Use remove' instead

  114. def repr : Map[K, V]

    definition classes: TraversableLike
  115. def result () : Map[K, V]

    definition classes: MapLike → Builder
  116. def retain (p: (K, V) ⇒ Boolean) : Stage.this.type

    definition classes: MapLike
  117. def reversed : List[(K, V)]

    attributes: protected[this]
    definition classes: TraversableOnce
  118. def sameElements [B >: A] (that: Iterable[B]) : Boolean

    definition classes: IterableLike
  119. def scanLeft [B, That] (z: B)(op: (B, (K, V)) ⇒ B)(implicit bf: CanBuildFrom[Map[K, V], B, That]) : That

    definition classes: TraversableLike
  120. def scanRight [B, That] (z: B)(op: ((K, V), B) ⇒ B)(implicit bf: CanBuildFrom[Map[K, V], B, That]) : That

    definition classes: TraversableLike
  121. def settings : CacheSettings[K, V]

    attributes: abstract
  122. def size : Int

    definition classes: TraversableOnce
  123. def sizeHint (coll: scala.collection.TraversableLike[_, _], delta: Int) : Unit

    definition classes: Builder
  124. def sizeHint (size: Int) : Unit

    definition classes: Builder
  125. def sizeHintBounded (size: Int, boundingColl: scala.collection.TraversableLike[_, _]) : Unit

    definition classes: Builder
  126. def slice (from: Int, until: Int) : Map[K, V]

    definition classes: IterableLike → TraversableLike
  127. def sliding [B >: A] (size: Int, step: Int) : Iterator[Map[K, V]]

    definition classes: IterableLike
  128. def sliding [B >: A] (size: Int) : Iterator[Map[K, V]]

    definition classes: IterableLike
  129. def span (p: ((K, V)) ⇒ Boolean) : (Map[K, V], Map[K, V])

    definition classes: TraversableLike
  130. def splitAt (n: Int) : (Map[K, V], Map[K, V])

    definition classes: TraversableLike
  131. def start : Actor

    Starts the stage.

    Starts the stage. This function is called automatically when the stage is created.

  132. def stop : Unit

    Stops the stage and evicts all entries.

    Stops the stage and evicts all entries.

  133. def stringPrefix : String

    definition classes: MapLike → TraversableLike
  134. def sum [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  135. def synchronized [T0] (arg0: T0) : T0

    attributes: final
    definition classes: AnyRef
  136. def tail : Map[K, V]

    definition classes: TraversableLike
  137. def take (n: Int) : Map[K, V]

    definition classes: IterableLike → TraversableLike
  138. def takeRight (n: Int) : Map[K, V]

    definition classes: IterableLike
  139. def takeWhile (p: ((K, V)) ⇒ Boolean) : Map[K, V]

    definition classes: IterableLike → TraversableLike
  140. def thisCollection : Iterable[(K, V)]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  141. def toArray [B >: A] (implicit arg0: ClassManifest[B]) : Array[B]

    definition classes: TraversableOnce
  142. def toBuffer [B >: A] : Buffer[B]

    definition classes: TraversableOnce
  143. def toCollection (repr: Map[K, V]) : Iterable[(K, V)]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  144. def toIndexedSeq [B >: A] : IndexedSeq[B]

    definition classes: TraversableOnce
  145. def toIterable : Iterable[(K, V)]

    definition classes: IterableLike → TraversableOnce
  146. def toIterator : Iterator[(K, V)]

    definition classes: TraversableLike → TraversableOnce
  147. def toList : List[(K, V)]

    definition classes: TraversableOnce
  148. def toMap [T, U] (implicit ev: <:<[(K, V), (T, U)]) : Map[T, U]

    definition classes: TraversableOnce
  149. def toSeq : Seq[(K, V)]

    definition classes: IterableLike → TraversableOnce
  150. def toSet [B >: A] : Set[B]

    definition classes: TraversableOnce
  151. def toStream : Stream[(K, V)]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  152. def toString () : String

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    definition classes: MapLike → TraversableLike → Function1 → AnyRef → Any
  153. def toTraversable : Traversable[(K, V)]

    definition classes: TraversableLike → TraversableOnce
  154. def transform (f: (K, V) ⇒ V) : Stage.this.type

    definition classes: MapLike
  155. def transpose [B] (implicit asTraversable: ((K, V)) ⇒ Traversable[B]) : Iterable[Iterable[B]]

    definition classes: GenericTraversableTemplate
  156. def unzip [A1, A2] (implicit asPair: ((K, V)) ⇒ (A1, A2)) : (Iterable[A1], Iterable[A2])

    definition classes: GenericTraversableTemplate
  157. def update (key: K, value: V) : Unit

    definition classes: MapLike
  158. def updated [B1 >: B] (key: K, value: B1) : Map[K, B1]

    definition classes: MapLike → MapLike
  159. def values : Iterable[V]

    definition classes: MapLike
  160. def valuesIterator : Iterator[V]

    definition classes: MapLike
  161. def view (from: Int, until: Int) : IterableView[(K, V), Map[K, V]]

    definition classes: IterableLike → TraversableLike
  162. def view : IterableView[(K, V), Map[K, V]]

    definition classes: IterableLike → TraversableLike
  163. def wait () : Unit

    attributes: final
    definition classes: AnyRef
  164. def wait (arg0: Long, arg1: Int) : Unit

    attributes: final
    definition classes: AnyRef
  165. def wait (arg0: Long) : Unit

    attributes: final
    definition classes: AnyRef
  166. def withFilter (p: ((K, V)) ⇒ Boolean) : FilterMonadic[(K, V), Map[K, V]]

    definition classes: TraversableLike → FilterMonadic
  167. def zip [A1 >: A, B, That] (that: Iterable[B])(implicit bf: CanBuildFrom[Map[K, V], (A1, B), That]) : That

    definition classes: IterableLike
  168. def zipAll [B, A1 >: A, That] (that: Iterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Map[K, V], (A1, B), That]) : That

    definition classes: IterableLike
  169. def zipWithIndex [A1 >: A, That] (implicit bf: CanBuildFrom[Map[K, V], (A1, Int), That]) : That

    definition classes: IterableLike

Inherited from FutureDeliveryStrategySequential

Inherited from Map[K, V]

Inherited from MapLike[K, V, Map[K, V]]

Inherited from Cloneable[Map[K, V]]

Inherited from Shrinkable[K]

Inherited from Builder[(K, V), Map[K, V]]

Inherited from Growable[(K, V)]

Inherited from Map[K, V]

Inherited from MapLike[K, V, Map[K, V]]

Inherited from Subtractable[K, Map[K, V]]

Inherited from PartialFunction[K, V]

Inherited from (K) ⇒ V

Inherited from Iterable[(K, V)]

Inherited from Iterable[(K, V)]

Inherited from IterableLike[(K, V), Map[K, V]]

Inherited from Equals

Inherited from Traversable[(K, V)]

Inherited from Mutable

Inherited from Traversable[(K, V)]

Inherited from GenericTraversableTemplate[(K, V), Iterable]

Inherited from TraversableLike[(K, V), Map[K, V]]

Inherited from TraversableOnce[(K, V)]

Inherited from FilterMonadic[(K, V), Map[K, V]]

Inherited from HasNewBuilder[(K, V), Map[K, V]]

Inherited from AnyRef

Inherited from Any