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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
activateSubscription(sub: Sub): Unit
- Definition Classes
- Publisher
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @IntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(obj: Any): Boolean
- Definition Classes
- Publisher → AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
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
-
val
self: Pub
- Attributes
- protected
- 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
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )