scala.collection.mutable

trait Subscriber

[source: scala/collection/mutable/Subscriber.scala]

trait Subscriber[-Evt, -Pub]
extends AnyRef
Subscriber[A, B] objects may subscribe to events of type A published by an object of type B. B is typically a subtype of Publisher.
Author
Matthias Zenger
Martin Odersky
Version
2.8
Since
1
Direct Known Subclasses:
History

Method Summary
abstract def notify (pub : Pub, event : Evt) : Unit
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
abstract def notify(pub : Pub, event : Evt) : Unit