subscriber.scala
来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 26 行
SCALA
26 行
/* __ *\** ________ ___ / / ___ Scala API **** / __/ __// _ | / / / _ | (c) 2003-2006, LAMP/EPFL **** __\ \/ /__/ __ |/ /__/ __ | **** /____/\___/_/ |_/____/_/ | | **** |/ **\* */// $Id: Subscriber.scala 8949 2006-10-11 22:02:11Z michelou $package scala.collection.mutable/** <code>Subscriber[A, B]</code> objects may subscribe to events of * type <code>A</code> published by an object of type <code>B</code>. * <code>B</code> is typically a subtype of <a href="Publisher.html" * target="contentFrame"><code>Publisher</code></a>. * * @author Matthias Zenger * @version 1.0, 08/07/2003 */trait Subscriber[-A, -B] { def notify(pub: B, event: A): Unit}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?