Click or drag to resize
Akka.NETActorBaseUnhandled 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.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
protected virtual 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