Click or drag to resize
Akka.NETICanWatch Interface
TBD

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface ICanWatch

The ICanWatch type exposes the following members.

Methods
  NameDescription
Public methodUnwatch
Stops monitoring the subject for termination.
Public methodWatch
Monitors the specified actor for termination. When the subject terminates the instance watching will receive a Terminated message.
Remarks
Note that if the Terminated message isn't handled by the actor, by default the actor will crash by throwing a DeathPactException. To change the default behavior, override Unhandled(Object).
Top
See Also