Share via


JobScheduler.PendingJobsInAllNamespaces Property

Definition

Retrieve all jobs that have been scheduled by the calling application within the current namespace.

public virtual System.Collections.Generic.IDictionary<string,System.Collections.Generic.IList<Android.App.Job.JobInfo>> PendingJobsInAllNamespaces { [Android.Runtime.Register("getPendingJobsInAllNamespaces", "()Ljava/util/Map;", "GetGetPendingJobsInAllNamespacesHandler", ApiSince=34)] get; }
[<get: Android.Runtime.Register("getPendingJobsInAllNamespaces", "()Ljava/util/Map;", "GetGetPendingJobsInAllNamespacesHandler", ApiSince=34)>]
member this.PendingJobsInAllNamespaces : System.Collections.Generic.IDictionary<string, System.Collections.Generic.IList<Android.App.Job.JobInfo>>

Property Value

a list of all of the app's scheduled jobs scheduled with the current namespace. If a namespace hasn't been explicitly set with #forNamespace(String), then this will return jobs in the default namespace. This includes jobs that are currently started as well as those that are still waiting to run.

Attributes

Remarks

Retrieve all jobs that have been scheduled by the calling application within the current namespace.

Java documentation for android.app.job.JobScheduler.getPendingJobsInAllNamespaces().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to