Skip to main content
Death watch lets an actor receive a Terminated message when another actor stops. Use it to clean up references, fail over, or react to actor lifecycle.

API

Watch and UnWatch are on *PID and ReceiveContext. Use ctx.Watch(pid) from inside Receive to watch another actor.

Terminated message

When a watched actor stops, the watcher receives:
Handle it in Receive:

When to use

  • Dependencies — Watch a child or peer; when it stops, recreate or fail over.
  • Resource cleanup — Release references to the stopped actor.
  • Supervision — Custom logic when a watched actor dies.

Automatic unwatch

When an actor stops, the system automatically calls UnWatch on all actors it was watching. Watchers do not need to call UnWatch when they receive Terminated—the watch is already cancelled. Call UnWatch only when you want to stop watching before the target terminates.

Example