How do view the timer attached to a process

I’m call erlang:send_after/3 and didn’t save the return value,how to view this process attach timer.

Timers are not attached to anything. That is, even if the process that called send_after exits before the given message was sent to the given process, the timer will still send it after the given time.

1 Like