public interface ResumingRuntimeManager
RuntimeEnvironment.applicationSuspended(long).
Such a request is forwarded by this interface and allows an automatic client
to resume the corresponding instance. A runtime manager may implement this interface. If it does not, the using service will not be able to automatically resume activities. The service may then either fail or just continue with limited functions.
| Modifier and Type | Interface and Description |
|---|---|
static interface |
ResumingRuntimeManager.AutomaticResumer
A service that is able to automatically resume activities after a
designated time period receives a request for this operation via this
interface.
|
| Modifier and Type | Method and Description |
|---|---|
void |
deregisterAutomaticResumer(ResumingRuntimeManager.AutomaticResumer automaticResumer)
Deregisters a service that provides the means to resume an activity
automatically.
|
void |
registerAutomaticResumer(ResumingRuntimeManager.AutomaticResumer automaticResumer)
Registers a service that provides the means to resume an activity
automatically.
|
void registerAutomaticResumer(ResumingRuntimeManager.AutomaticResumer automaticResumer)
automaticResumer - The service providing the means to resume an
activity automatically.void deregisterAutomaticResumer(ResumingRuntimeManager.AutomaticResumer automaticResumer)
automaticResumer - The service providing the means to resume an
activity automatically.