SuspendSystemListenerpublic interface SuspendSystemListener A listener interested in java stack suspend/resume events.
The SuspendSystem notifies all registered listeners on java stack
suspend/resume completion. |
Methods Summary |
---|
public void | midpResumed()Called to notify the listener that java side of MIDP system
has been resumed. Note this method may be called from the thread
that processes system resume routine, so blocking in this method
may prevent other listeners form receving notification.
| public void | midpSuspended()Called to notify the listener that java side of MIDP system
has been suspended. Note this method may be called from the
thread that processes system suspending routine, so it must
be non-blocking.
|
|