Hello,<br>
I am working on an application, which does some processing, there are
clients which ask for a processing object, make it do the processing,
get the result, and leave.<br>
Till now I made a Provider object, which creates a new Processor object for this client, and sends its reference to the client.<br>
After the client finished with its needs, I want to destory the Processor.<br>
I could use the poa-&gt;deactivate_object but it would be better not to
use an additional method, ot put it at the end of the processing method.<br>
I want so that the destroy would happen after the client disconnected. Is it possible to do such auto destroy?<br>
<br>