akka.actor
Class SuppressedDeadLetter

java.lang.Object
  extended by akka.actor.SuppressedDeadLetter
All Implemented Interfaces:
AllDeadLetters, java.io.Serializable, scala.Equals, scala.Product

public class SuppressedDeadLetter
extends java.lang.Object
implements AllDeadLetters, scala.Product, scala.Serializable

Similar to DeadLetter with the slight twist of NOT being logged by the default dead letters listener. Messages which end up being suppressed dead letters are internal messages for which ending up as dead-letter is both expected and harmless.

It is possible to subscribe to suppressed dead letters on the ActorSystem's EventStream explicitly.

See Also:
Serialized Form

Constructor Summary
SuppressedDeadLetter(DeadLetterSuppression message, ActorRef sender, ActorRef recipient)
           
 
Method Summary
 DeadLetterSuppression message()
           
 ActorRef recipient()
           
 ActorRef sender()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Constructor Detail

SuppressedDeadLetter

public SuppressedDeadLetter(DeadLetterSuppression message,
                            ActorRef sender,
                            ActorRef recipient)
Method Detail

message

public DeadLetterSuppression message()
Specified by:
message in interface AllDeadLetters

sender

public ActorRef sender()
Specified by:
sender in interface AllDeadLetters

recipient

public ActorRef recipient()
Specified by:
recipient in interface AllDeadLetters