final case class Unregister(obj: IdentifiableEntity, callback: Option[ActorRef] = None) extends Product with Serializable
A message for accepting object-number unregistration requests.
When given to a number pool (NumberPoolAccessorActor), that Actor assumes itself to have the object.
When given to a hub object (NumberPoolHubActor), it will attempt to determine which pool currently has the object.
The callback is actually an ActorRef to which a RegisterSuccess message or a RegisterFailure message is sent.
This is as opposed to what a "callback" is normally - a function.
- obj
the mandatory object
- callback
the optional custom callback for the messages from the success or failure conditions
- Source
- Unregister.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Unregister
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Unregister(obj: IdentifiableEntity, callback: Option[ActorRef] = None)
- obj
the mandatory object
- callback
the optional custom callback for the messages from the success or failure conditions
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val callback: Option[ActorRef]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- 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()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val obj: IdentifiableEntity
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()