Class DeadLetterListener
This class represents an actor responsible for listening to DeadLetter messages and logging them using the EventStream.
Implements
Inherited Members
Namespace: Akka.Event
Assembly: Akka.dll
Syntax
public class DeadLetterListener : ActorBase, IInternalActor
  Methods
| Edit this page View SourcePostRestart(Exception)
Don't re-subscribe, skip call to preStart
Declaration
protected override void PostRestart(Exception reason)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Exception | reason | 
Overrides
| Edit this page View SourcePostStop()
User overridable callback.
Is called asynchronously after 'actor.stop()' is invoked. Empty default implementation.Declaration
protected override void PostStop()
  Overrides
| Edit this page View SourcePreRestart(Exception, object)
Don't remove subscription, skip call to postStop, no children to stop
Declaration
protected override void PreRestart(Exception reason, object message)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Exception | reason | |
| object | message | 
Overrides
| Edit this page View SourcePreStart()
User overridable callback.
Is called when an Actor is started. Actors are automatically started asynchronously when created. Empty default implementation.Declaration
protected override void PreStart()
  Overrides
| Edit this page View SourceReceive(object)
Processor for user defined messages.
Declaration
protected override bool Receive(object message)
  Parameters
| Type | Name | Description | 
|---|---|---|
| object | message | The message.  | 
      
Returns
| Type | Description | 
|---|---|
| bool | TBD  | 
      
Edit this page