Package akka.dispatch
Interface MessageQueue
-
- All Known Subinterfaces:
BoundedControlAwareMessageQueueSemantics,BoundedDequeBasedMessageQueue,BoundedQueueBasedMessageQueue,ControlAwareMessageQueueSemantics,DequeBasedMessageQueue,QueueBasedMessageQueue,UnboundedControlAwareMessageQueueSemantics,UnboundedDequeBasedMessageQueue,UnboundedQueueBasedMessageQueue
- All Known Implementing Classes:
BoundedControlAwareMailbox.MessageQueue,BoundedDequeBasedMailbox.MessageQueue,BoundedMailbox.MessageQueue,BoundedNodeMessageQueue,BoundedPriorityMailbox.MessageQueue,BoundedStablePriorityMailbox.MessageQueue,LoggerMailbox,NodeMessageQueue,PeekMailbox,UnboundedControlAwareMailbox.MessageQueue,UnboundedDequeBasedMailbox.MessageQueue,UnboundedMailbox.MessageQueue,UnboundedPriorityMailbox.MessageQueue,UnboundedStablePriorityMailbox.MessageQueue
public interface MessageQueueTry to enqueue the message to this queue, or throw an exception.
-
-
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.Envelopedequeue()Try to dequeue the next message from this queue, return null failing that.voidenqueue(ActorRef receiver, Envelope handle)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.
-
-
-
Method Detail
-
cleanUp
void cleanUp(ActorRef owner, MessageQueue deadLetters)
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.- Parameters:
owner- (undocumented)deadLetters- (undocumented)
-
dequeue
Envelope dequeue()
Try to dequeue the next message from this queue, return null failing that.- Returns:
- (undocumented)
-
hasMessages
boolean hasMessages()
Indicates whether this queue is non-empty.- Returns:
- (undocumented)
-
numberOfMessages
int numberOfMessages()
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, usehasMessagesinstead.- Returns:
- (undocumented)
-
-