If a "destroy" method is used together with GC inside of my app,it makes my app unstable. In this case I need to choose how to destroy my objects: 1) always manually by method "destroy", but without GC; 2) or always automatically by GC, but without using the "destroy" method. In the first case I need to know how can I disable the automatic GC in my app? In the second case - how can I disable the "destroy" method calls inside of my app?

Reply via email to