Interface Scheduler
-
- All Known Implementing Classes:
PlatformScheduler
,WorkManagerScheduler
@Deprecated public interface Scheduler
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Schedules a service to be started in the foreground when someRequirements
are met.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
cancel()
Deprecated.Cancels anything that was previously scheduled, or else does nothing.Requirements
getSupportedRequirements(Requirements requirements)
Deprecated.Checks whether thisScheduler
supports the providedRequirements
.boolean
schedule(Requirements requirements, String servicePackage, String serviceAction)
Deprecated.Schedules a service to be started in the foreground when someRequirements
are met.
-
-
-
Method Detail
-
schedule
boolean schedule(Requirements requirements, String servicePackage, String serviceAction)
Deprecated.Schedules a service to be started in the foreground when someRequirements
are met. Anything that was previously scheduled will be canceled.The service to be started must be declared in the manifest of
servicePackage
with an intent filter containingserviceAction
. Note that when started withserviceAction
, the service must callService.startForeground(int, Notification)
to make itself a foreground service, as documented byContextWrapper.startForegroundService(Intent)
.- Parameters:
requirements
- The requirements.servicePackage
- The package name.serviceAction
- The action with which the service will be started.- Returns:
- Whether scheduling was successful.
-
cancel
boolean cancel()
Deprecated.Cancels anything that was previously scheduled, or else does nothing.- Returns:
- Whether cancellation was successful.
-
getSupportedRequirements
Requirements getSupportedRequirements(Requirements requirements)
Deprecated.Checks whether thisScheduler
supports the providedRequirements
. If all of the requirements are supported then the sameRequirements
instance is returned. If not then a new instance is returned containing the subset of the requirements that are supported.- Parameters:
requirements
- The requirements to check.- Returns:
- The supported requirements.
-
-