Table A.1. MIDlet Life Cycle Methods
|
| startApp() | Called by the AMS when the MIDlet starts to recover from the pause state. |
| destroyApp() | Called by the AMS when the MIDlet is terminated. |
| pauseApp() | Called by the AMS when the MIDlet is paused. |
| notifyDestroyed() | Called by the MIDlet. It asks the AMS to destroy the MIDlet itself. |
| notifyPaused() | Called by the MIDlet. It asks the AMS to pause the MIDlet itself. |
| resumeRequest() | Called by the paused MIDlet (e.g., from a background thread). It notifies the AMS that the MIDlet desires to come out of the paused state and become active again. |