in scala/collection/mutable
trait Subscriber

trait Subscriber[-A,-B]()
extends Object
with ScalaObject
Implementing classes or objects:
class History[A,B]()

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
Version:
1.0, 08/07/2003

Method Summary
abstract def notify(pub: B, event: A): Unit
final def notify(): Unit

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/ScalaObject-class
getScalaType

Method Detail

notify

  abstract def notify(pub: B, event: A): Unit

notify

  final def notify(): Unit