Click or drag to resize
Akka.NETEventsourcedUnhandled Method
Is called when a message isn't handled by the current behavior of the actor by default it fails with either a DeathPactException (in case of an unhandled Terminated message) or publishes an UnhandledMessage to the actor's system's EventStream

Namespace:  Akka.Persistence
Assembly:  Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
protected override void Unhandled(
	Object message
)

Parameters

message
Type: SystemObject
The unhandled message.
Exceptions
ExceptionCondition
DeathPactException This exception is thrown if the given message is a Terminated message.
See Also