trait ActionBroker[A <: Action] extends Publisher[A]
- Source
- Action.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ActionBroker
- Publisher
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
Abstract Value Members
- abstract val runner: ActionRunner[A]
Concrete Value Members
-
def
activateSubscription(sub: Sub): Unit
- Definition Classes
- Publisher
-
def
equals(obj: Any): Boolean
- Definition Classes
- Publisher → AnyRef → Any
-
def
publish(action: A): Unit
- Definition Classes
- ActionBroker → Publisher
-
def
publishWithoutRunning(action: A): Unit
Normally, you would not want to do that.
Normally, you would not want to do that. The one use case we have is the Stamp drawing action which, when recorded through an ActionBroker, calls trailDrawer.stamp() directly and grabs a bitmap that will be stored in the Action. No need, then, to re-import that bitmap through the runner. But this is very much a hack and I wish we had another way of handling stamping so we could (amongst other things) get rid of this method. NP 2013-02-04
-
def
removeSubscription(sub: Sub): Unit
- Definition Classes
- Publisher
-
def
removeSubscriptions(): Unit
- Definition Classes
- Publisher
-
def
subscribe(sub: Sub, filter: Filter): Unit
- Definition Classes
- Publisher
-
def
subscribe(sub: Sub): Unit
- Definition Classes
- Publisher
-
def
suspendSubscription(sub: Sub): Unit
- Definition Classes
- Publisher