My understanding is that a gen-server with a watch! on an actor should receive a message via it's handle-info when the watched actor terminates.
The following example is based on code from the tests and my expectation is that both actor2 and gs should receive messages indicating that actor1 has terminated.
On running, actor2 does indeed receive the exit, but gs does not receive anything.
My understanding is that a
gen-server
with awatch!
on an actor should receive a message via it'shandle-info
when the watched actor terminates.The following example is based on code from the tests and my expectation is that both
actor2
andgs
should receive messages indicating thatactor1
has terminated.On running,
actor2
does indeed receive the exit, butgs
does not receive anything.Help on this issue would be greatly appreciated.
Thank you.