When using the methods on the default Akka system scheduler (context().system().scheduler().schedule()
from inside an actor), and one of the overloads accepting a destination actor, do I need to explicitly cancel using the returned Cancellable to free up resources when the destination actor stops?
I imagine the scheduler may be watch()
ing the destination actor and automatically perform the cleanup but cannot find it explicitly state anywhere in the documentation.