constructor
Şöyle yaparız.
Açıklaması şöyle.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
JobScheduler scheduler = (JobScheduler) context.getSystemService
(Context.JOB_SCHEDULER_SERVICE);
schedule metoduAçıklaması şöyle.
Minimum duration between two schedule is around 15 minutes. You can easily query for this information using getMinPeriodMillis()Açıklaması şöyle.
ÖrnekNote:Attempting to declare a smaller period that this when scheduling a job will result in a job that is still periodic, but will run with this effective period.
Şöyle yaparız.
jobScheduler.schedule(new JobInfo.Builder(MY_JOB_ID,
new ComponentName(applicationContext, MyJob.class))
.setPeriodic(syncInterval)
.build());
ÖrnekŞöyle yaparız.
JobScheduler scheduler = ...;
JobInfo job = new JobInfo.Builder(1, new ComponentName(context, MySchedulerService.class))
.setMinimumLatency(...)
.build();
scheduler.schedule(job);