Scala Library
|
|
scala/collection/mutable/History.scala
]
class
History[Evt, Pub]
extends
Subscriber[Evt, Pub] with
Iterable[(Pub, Evt)]History[A, B]
objects may subscribe to events of
type A
published by an object of type B
.
The history subscriber object records all published events
up to maximum number of maxHistory
events.Value Summary | |
protected val
|
log : Queue[(Pub, Evt)] |
val
|
maxHistory : Int |
Method Summary | |
def
|
clear : Unit |
override def
|
equals
(obj : Any) : Boolean
Checks if two history objects are structurally identical.
|
def
|
events : Iterator[Evt] |
def
|
iterator
: Iterator[(Pub, Evt)]
Creates a new iterator over all elements contained in this
iterable object.
|
def
|
notify (pub : Pub, event : Evt) : Unit |
override def
|
size
: Int
The number of elements in this collection
|
Methods inherited from Iterable | |
companion |
Methods inherited from IterableLike | |
thisCollection, toCollection, elements, foreach, forall, exists, find, isEmpty, foldRight, reduceRight, toIterable, head, take, slice, takeWhile, takeRight, dropRight, copyToArray, zip, zipAll, zipWithIndex, sameElements, toStream, canEqual, view, view, first, firstOption, projection |
Methods inherited from GenericTraversableTemplate | |
newBuilder, genericBuilder, unzip, flatten, transpose |
Methods inherited from TraversableLike | |
repr, nonEmpty, hasDefiniteSize, ++, ++, map, flatMap, filter, filterNot, partialMap, remove, partition, groupBy, count, foldLeft, /:, :\, reduceLeft, reduceLeftOption, reduceRightOption, sum, product, min, max, headOption, tail, last, lastOption, init, drop, dropWhile, span, splitAt, copyToBuffer, copyToArray, toArray, toList, toSeq, toIndexedSeq, toSet, mkString, mkString, mkString, addString, addString, addString, toString, stringPrefix, withFilter |
Methods inherited from AnyRef | |
getClass, hashCode, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Value Details |
Method Details |
pub -
...event -
...override
def
size : Int
def
clear : Unit
Scala Library
|
|