|
Scala Library
|
|
scala/collection/mutable/History.scala]
class
History[A, B]
extends Subscriber[A, B] with Collection[(B, A)]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[(B, A)] |
val
|
maxHistory : Int |
| Method Summary | |
def
|
clear : Unit |
def
|
elements
: Iterator[(B, A)]
Creates a new iterator over all elements contained in this
object.
|
def
|
events : Iterator[A] |
def
|
notify (pub : B, event : A) : Unit |
override def
|
size
: Int
Returns the number of elements in this collection.
|
| Methods inherited from Collection | |
| toArray, toString, stringPrefix |
| Methods inherited from Iterable | |
| concat, ++, map, flatMap, filter, partition, takeWhile, dropWhile, take, drop, foreach, forall, exists, find, findIndexOf, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, toSeq, toStream, mkString, mkString, mkString, addString, addString, addString, copyToArray, isEmpty, projection, hasDefiniteSize |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, 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
|
|