class PeekMailbox extends UnboundedQueueBasedMessageQueue
- Annotations
- @deprecated
- Deprecated
(Since version 2.5.0) Use an explicit supervisor or proxy actor instead
- Source
- PeekMailbox.scala
- Alphabetic
- By Inheritance
- PeekMailbox
- UnboundedQueueBasedMessageQueue
- UnboundedMessageQueueSemantics
- QueueBasedMessageQueue
- MultipleConsumerSemantics
- MessageQueue
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new PeekMailbox(owner: ActorRef, system: ActorSystem, maxRetries: Int)
Value Members
- val Marker: Int
- def ack(): Unit
-
def
cleanUp(owner: ActorRef, deadLetters: MessageQueue): Unit
Called when the mailbox this queue belongs to is disposed of.
Called when the mailbox this queue belongs to is disposed of. Normally it is expected to transfer all remaining messages into the dead letter queue which is passed in. The owner of this MessageQueue is passed in if available (e.g. for creating DeadLetters()), “/deadletters” otherwise.
- Definition Classes
- PeekMailbox → QueueBasedMessageQueue → MessageQueue
-
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
- PeekMailbox → UnboundedQueueBasedMessageQueue → MessageQueue
-
def
enqueue(receiver: ActorRef, handle: 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
- UnboundedQueueBasedMessageQueue → MessageQueue
-
def
hasMessages: Boolean
Indicates whether this queue is non-empty.
Indicates whether this queue is non-empty.
- Definition Classes
- QueueBasedMessageQueue → MessageQueue
-
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
- QueueBasedMessageQueue → MessageQueue
-
final
val
queue: ConcurrentLinkedQueue[Envelope]
- Definition Classes
- PeekMailbox → QueueBasedMessageQueue
- var tries: Int