akka.testkit

CallingThreadMailbox

Related Doc: package testkit

class CallingThreadMailbox extends Mailbox with DefaultSystemMessageQueue

Source
CallingThreadDispatcher.scala
Linear Supertypes
DefaultSystemMessageQueue, Mailbox, Runnable, SystemMessageQueue, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CallingThreadMailbox
  2. DefaultSystemMessageQueue
  3. Mailbox
  4. Runnable
  5. SystemMessageQueue
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CallingThreadMailbox(_receiver: Cell, mailboxType: MailboxType)

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to any2stringadd[CallingThreadMailbox] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (CallingThreadMailbox, B)

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to ArrowAssoc[CallingThreadMailbox] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. var _statusDoNotCallMeDirectly: Status

    Attributes
    protected
    Definition Classes
    Mailbox
  7. var _systemQueueDoNotCallMeDirectly: SystemMessage

    Attributes
    protected
    Definition Classes
    Mailbox
  8. var actor: ActorCell

    Definition Classes
    Mailbox
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. final def becomeClosed(): Boolean

    set new primary status Closed.

    set new primary status Closed. Caller does not need to worry about whether status was Scheduled or not.

    Definition Classes
    Mailbox
    Annotations
    @tailrec()
  11. final def canBeScheduledForExecution(hasMessageHint: Boolean, hasSystemMessageHint: Boolean): Boolean

    Definition Classes
    Mailbox
  12. def cleanUp(): Unit

    Overridable callback to clean up the mailbox, called when an actor is unregistered.

    Overridable callback to clean up the mailbox, called when an actor is unregistered. By default it dequeues all system messages + messages and ships them to the owning actors' systems' DeadLetterMailbox

    Definition Classes
    CallingThreadMailbox → Mailbox
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. val ctdLock: ReentrantLock

  15. final def currentStatus: Status

    Definition Classes
    Mailbox
    Annotations
    @inline()
  16. def dequeue(): Envelope

    Try to dequeue the next message from this queue, return null failing that.

    Try to dequeue the next message from this queue, return null failing that.

    Definition Classes
    CallingThreadMailbox → Mailbox
  17. def dispatcher: MessageDispatcher

    Definition Classes
    Mailbox
  18. def enqueue(receiver: ActorRef, msg: Envelope): Unit

    Try to enqueue the message to this queue, or throw an exception.

    Try to enqueue the message to this queue, or throw an exception.

    Definition Classes
    CallingThreadMailbox → Mailbox
  19. def ensuring(cond: (CallingThreadMailbox) ⇒ Boolean, msg: ⇒ Any): CallingThreadMailbox

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to Ensuring[CallingThreadMailbox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (CallingThreadMailbox) ⇒ Boolean): CallingThreadMailbox

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to Ensuring[CallingThreadMailbox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: ⇒ Any): CallingThreadMailbox

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to Ensuring[CallingThreadMailbox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): CallingThreadMailbox

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to Ensuring[CallingThreadMailbox] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  25. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to StringFormat[CallingThreadMailbox] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  28. def hasMessages: Boolean

    Indicates whether this queue is non-empty.

    Indicates whether this queue is non-empty.

    Definition Classes
    CallingThreadMailbox → Mailbox
  29. def hasSystemMessages: Boolean

    Definition Classes
    DefaultSystemMessageQueue
  30. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  31. final def isClosed: Boolean

    Definition Classes
    Mailbox
    Annotations
    @inline()
  32. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  33. final def isScheduled: Boolean

    Definition Classes
    Mailbox
    Annotations
    @inline()
  34. final def isSuspended: Boolean

    Definition Classes
    Mailbox
    Annotations
    @inline()
  35. val mailboxType: MailboxType

  36. val messageQueue: MessageQueue

    This is only a marker to be put in the messageQueue’s stead to make error messages pertaining to violated mailbox type requirements less cryptic.

    This is only a marker to be put in the messageQueue’s stead to make error messages pertaining to violated mailbox type requirements less cryptic.

    Definition Classes
    CallingThreadMailbox → Mailbox
  37. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  38. final def notify(): Unit

    Definition Classes
    AnyRef
  39. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  40. def numberOfMessages: Int

    Should return the current number of messages held in this queue; may always return 0 if no other value is available efficiently.

    Should return the current number of messages held in this queue; may always return 0 if no other value is available efficiently. Do not use this for testing for presence of messages, use hasMessages instead.

    Definition Classes
    CallingThreadMailbox → Mailbox
  41. final def processAllSystemMessages(): Unit

    Will at least try to process all queued system messages: in case of failure simply drop and go on to the next, because there is nothing to restart here (failure is in ActorCell somewhere …).

    Will at least try to process all queued system messages: in case of failure simply drop and go on to the next, because there is nothing to restart here (failure is in ActorCell somewhere …). In case the mailbox becomes closed (because of processing a Terminate message), dump all already dequeued message to deadLetters.

    Definition Classes
    Mailbox
  42. def queue: MessageQueue

  43. final def resume(): Boolean

    Reduce the suspend count by one.

    Reduce the suspend count by one. Caller does not need to worry about whether status was Scheduled or not.

    returns

    true if the suspend count reached zero

    Definition Classes
    Mailbox
    Annotations
    @tailrec()
  44. final def run(): Unit

    Definition Classes
    Mailbox → Runnable
  45. val self: ActorRef

  46. def setActor(cell: ActorCell): Unit

    Definition Classes
    Mailbox
  47. final def setAsIdle(): Boolean

    Reset Scheduled status, keeping primary status as is.

    Reset Scheduled status, keeping primary status as is.

    Definition Classes
    Mailbox
    Annotations
    @tailrec()
  48. final def setAsScheduled(): Boolean

    Set Scheduled status, keeping primary status as is.

    Set Scheduled status, keeping primary status as is.

    Definition Classes
    Mailbox
    Annotations
    @tailrec()
  49. final def setStatus(newStatus: Status): Unit

    Attributes
    protected
    Definition Classes
    Mailbox
    Annotations
    @inline()
  50. final def shouldProcessMessage: Boolean

    Definition Classes
    Mailbox
    Annotations
    @inline()
  51. final def suspend(): Boolean

    Increment the suspend count by one.

    Increment the suspend count by one. Caller does not need to worry about whether status was Scheduled or not.

    returns

    true if the previous suspend count was zero

    Definition Classes
    Mailbox
    Annotations
    @tailrec()
  52. final def suspendCount: Int

    Definition Classes
    Mailbox
    Annotations
    @inline()
  53. val suspendSwitch: Switch

  54. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  55. val system: ActorSystem

  56. final def systemDrain(newContents: LatestFirstSystemMessageList): EarliestFirstSystemMessageList

    Definition Classes
    DefaultSystemMessageQueue
    Annotations
    @tailrec()
  57. final def systemEnqueue(receiver: ActorRef, message: SystemMessage): Unit

    Definition Classes
    DefaultSystemMessageQueue
    Annotations
    @tailrec()
  58. final def systemQueueGet: LatestFirstSystemMessageList

    Attributes
    protected
    Definition Classes
    Mailbox
  59. final def systemQueuePut(_old: LatestFirstSystemMessageList, _new: LatestFirstSystemMessageList): Boolean

    Attributes
    protected
    Definition Classes
    Mailbox
  60. def toString(): String

    Definition Classes
    AnyRef → Any
  61. final def updateStatus(oldStatus: Status, newStatus: Status): Boolean

    Attributes
    protected
    Definition Classes
    Mailbox
    Annotations
    @inline()
  62. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. def [B](y: B): (CallingThreadMailbox, B)

    Implicit information
    This member is added by an implicit conversion from CallingThreadMailbox to ArrowAssoc[CallingThreadMailbox] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from DefaultSystemMessageQueue

Inherited from Mailbox

Inherited from Runnable

Inherited from SystemMessageQueue

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from CallingThreadMailbox to any2stringadd[CallingThreadMailbox]

Inherited by implicit conversion StringFormat from CallingThreadMailbox to StringFormat[CallingThreadMailbox]

Inherited by implicit conversion Ensuring from CallingThreadMailbox to Ensuring[CallingThreadMailbox]

Inherited by implicit conversion ArrowAssoc from CallingThreadMailbox to ArrowAssoc[CallingThreadMailbox]

Ungrouped