Package org.apache.pekko.dispatch
Interface QueueBasedMessageQueue
-
- All Superinterfaces:
MessageQueue,MultipleConsumerSemantics
- All Known Subinterfaces:
BoundedControlAwareMessageQueueSemantics,BoundedDequeBasedMessageQueue,BoundedQueueBasedMessageQueue,ControlAwareMessageQueueSemantics,DequeBasedMessageQueue,UnboundedControlAwareMessageQueueSemantics,UnboundedDequeBasedMessageQueue,UnboundedQueueBasedMessageQueue
- All Known Implementing Classes:
BoundedControlAwareMailbox.MessageQueue,BoundedDequeBasedMailbox.MessageQueue,BoundedMailbox.MessageQueue,BoundedPriorityMailbox.MessageQueue,BoundedStablePriorityMailbox.MessageQueue,UnboundedControlAwareMailbox.MessageQueue,UnboundedDequeBasedMailbox.MessageQueue,UnboundedMailbox.MessageQueue,UnboundedPriorityMailbox.MessageQueue,UnboundedStablePriorityMailbox.MessageQueue
public interface QueueBasedMessageQueue extends MessageQueue, MultipleConsumerSemantics
A QueueBasedMessageQueue is a MessageQueue backed by a java.util.Queue.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcleanUp(ActorRef owner, MessageQueue deadLetters)Called when the mailbox this queue belongs to is disposed of.booleanhasMessages()Indicates whether this queue is non-empty.intnumberOfMessages()Should return the current number of messages held in this queue; may always return 0 if no other value is available efficiently.java.util.Queue<Envelope>queue()-
Methods inherited from interface org.apache.pekko.dispatch.MessageQueue
dequeue, enqueue
-
-
-
-
Method Detail
-
cleanUp
void cleanUp(ActorRef owner, MessageQueue deadLetters)
Description copied from interface:MessageQueueCalled 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.Note that we implement the method in a recursive manner mainly for atomicity (not touching the queue twice).
- Specified by:
cleanUpin interfaceMessageQueue
-
hasMessages
boolean hasMessages()
Description copied from interface:MessageQueueIndicates whether this queue is non-empty.- Specified by:
hasMessagesin interfaceMessageQueue
-
numberOfMessages
int numberOfMessages()
Description copied from interface:MessageQueueShould 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, usehasMessagesinstead.- Specified by:
numberOfMessagesin interfaceMessageQueue
-
queue
java.util.Queue<Envelope> queue()
-
-