class
StandaloneHook
[S]
extends Hook[S]
Instance Constructors
-
new
StandaloneHook
(base: Hook[S])
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
_get
: List[S]
-
def
_register
(s: S): Unit
-
def
asInstanceOf
[T0]
: T0
-
val
base
: Hook[S]
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
logErrors
(f: ⇒ Unit): Unit
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
standalone
[R]
(f: ⇒ R): R
-
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Standalone hook base type. You do not need to use this class directly.
Normally a hook can only be modified during the initilisation phase, because that's the only time that a mutable context can be located. Attempting to register behaviour with a hook at any other time will throw an exception. Standalone hooks bypass that restriction by wrapping the hook in a permanently mutable context.