zentara,
Asterisk::AMI is the management interface to an Asterisk VOIP server. I use it to make calls, inject DTMF, hangup, etc. It can be event driven, but I am not using callbacks. What I don't understand is that I disconnect from it and undef $asterisk, but something is lingering.
I was hoping there was some way to completely remove any remnants of my call to asterisk::AMI. I'd rather not start new threads. | [reply] |
undef @$asterisk;
Also see "cleaning out" object data and Object::Destroyer
| [reply] [d/l] |
I was trying undef without success. I was hopeful about Object::Destroyer, but that didn't help my problem. It was good to discover though! But I'm about to give up.
The strange thing is that creating a totally unrelated object can cause Mainloop to not exit. Why would Mainloop even care?
| [reply] |