Methods Summary |
---|
public int | describeContents()
return 0;
|
public android.app.job.IJobCallback | getCallback()
return IJobCallback.Stub.asInterface(callback);
|
public android.os.PersistableBundle | getExtras()
return extras;
|
public int | getJobId()
return jobId;
|
public boolean | isOverrideDeadlineExpired()For jobs with {@link android.app.job.JobInfo.Builder#setOverrideDeadline(long)} set, this
provides an easy way to tell whether the job is being executed due to the deadline
expiring. Note: If the job is running because its deadline expired, it implies that its
constraints will not be met.
return overrideDeadlineExpired;
|
public void | writeToParcel(android.os.Parcel dest, int flags)
dest.writeInt(jobId);
dest.writePersistableBundle(extras);
dest.writeStrongBinder(callback);
dest.writeInt(overrideDeadlineExpired ? 1 : 0);
|