All Projects → hypertrack → Smart Scheduler Android

hypertrack / Smart Scheduler Android

Licence: mit
A utility library for scheduling periodic and non-periodic jobs efficiently.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Smart Scheduler Android

Workq
Job server in Go
Stars: ✭ 1,546 (+66.24%)
Mutual labels:  scheduler, schedule, job-scheduler
scheduler
Task Scheduler for Laravel applications. UI from scratch
Stars: ✭ 18 (-98.06%)
Mutual labels:  schedule, scheduler
nodejs-cron-job-must-know
it is an example of running node.js script with every certain period(cron job)
Stars: ✭ 35 (-96.24%)
Mutual labels:  schedule, scheduler
yerbie
A blazing fast job queue built for ease of use and scalability
Stars: ✭ 16 (-98.28%)
Mutual labels:  scheduler, job-scheduler
gronx
Lightweight, fast and dependency-free Cron expression parser (due checker), task scheduler and/or daemon for Golang (tested on v1.13 and above) and standalone usage
Stars: ✭ 206 (-77.85%)
Mutual labels:  scheduler, job-scheduler
jquery-schedule
jQuery Schedule
Stars: ✭ 53 (-94.3%)
Mutual labels:  schedule, scheduler
Gocron
Easy and fluent Go cron scheduling. This is a fork from https://github.com/jasonlvhit/gocron
Stars: ✭ 605 (-34.95%)
Mutual labels:  scheduler, schedule
angular-gantt-schedule-timeline-calendar-example
Angular gantt-schedule-timeline-calendar usage example
Stars: ✭ 15 (-98.39%)
Mutual labels:  schedule, scheduler
Xxl Job
A distributed task scheduling framework.(分布式任务调度平台XXL-JOB)
Stars: ✭ 20,197 (+2071.72%)
Mutual labels:  scheduler, schedule
Db Scheduler
Persistent cluster-friendly scheduler for Java
Stars: ✭ 352 (-62.15%)
Mutual labels:  scheduler, job-scheduler
Taskscheduler
Cross-platform, fiber-based, multi-threaded task scheduler designed for video games.
Stars: ✭ 402 (-56.77%)
Mutual labels:  scheduler, job-scheduler
krolib
Magic library and DSL to handle complex schedules
Stars: ✭ 19 (-97.96%)
Mutual labels:  schedule, scheduler
coo
Schedule Twitter updates with easy
Stars: ✭ 44 (-95.27%)
Mutual labels:  schedule, scheduler
reactr
Function scheduler for Go & WebAssembly
Stars: ✭ 264 (-71.61%)
Mutual labels:  scheduler, job-scheduler
go-xxl-job-client
xxl-job go client
Stars: ✭ 36 (-96.13%)
Mutual labels:  scheduler, job-scheduler
linda
Linda is a simple dispatcher library.
Stars: ✭ 12 (-98.71%)
Mutual labels:  schedule, scheduler
Incubator Dolphinscheduler
Apache DolphinScheduler is a distributed and extensible workflow scheduler platform with powerful DAG visual interfaces, dedicated to solving complex job dependencies in the data pipeline and providing various types of jobs available out of box.
Stars: ✭ 6,916 (+643.66%)
Mutual labels:  schedule, job-scheduler
OPoster
Scheduling Platform for Social Media Networks. Powered by Orienteer
Stars: ✭ 31 (-96.67%)
Mutual labels:  schedule, scheduler
ld-scheduler
Schedule Launch Darkly flags on or off
Stars: ✭ 14 (-98.49%)
Mutual labels:  schedule, scheduler
Swiftqueue
Job Scheduler for IOS with Concurrent run, failure/retry, persistence, repeat, delay and more
Stars: ✭ 276 (-70.32%)
Mutual labels:  scheduler, job-scheduler

smart-scheduler-android

Build Status Download Codacy Badge Android Arsenal Open Source Love License: MIT

Overview

A utility library for Android to schedule one-time or periodic jobs while your app is running. Currently, Android OS supports 3 types of scheduling APIs: Handler, AlarmManager and JobScheduler. The choice of one suitable API, the inflexibility of switching between them and the amount of boilerplate code required for setting up makes it difficult to use these APIs. Want to know more on this and wondering why you should prefer using this library over doing it yourself. Check out the blog post.

android-job is a similar scheduling library, which unifies AlarmManager, GcmNetworkManager & JobScheduler APIs. But when it comes to implementing network dependent jobs for an interval less than 30sec or implementing jobs while the device is in PowerSaver Mode, it is not able to schedule such jobs as required. This is where smart-scheduler library gives an advantage over android-job.

Download

Download the latest version or grab via Gradle:

The library is available on mavenCentral() and jcenter(). In your module's build.gradle, add the following code snippet and run the gradle-sync.

dependencies {
    ...
    compile 'io.hypertrack:smart-scheduler:0.0.13'
    ...
}

If you didn't turn off the manifest merger from the Gradle build tools, then no further step is required to setup the library. Otherwise you manually need to add the permissions and services like in this AndroidManifest.

Usage

Demo App

  • The class SmartScheduler serves as the entry point. You need to create a Job object with the corresponding job parameters using the Job.Builder class.

  • The Job.Builder class has many extra options, e.g. you can specify a required network connection, required charging state, make the job periodic or run the job at an exact time.

	SmartScheduler.JobScheduledCallback callback = new SmartScheduler.JobScheduledCallback() {
        @Override
        public void onJobScheduled(Context context, Job job) {
            // Handle onJobScheduled here
        }
    };

    Job.Builder builder = new Job.Builder(JOB_ID, callback, jobType, JOB_PERIODIC_TASK_TAG)
            .setRequiredNetworkType(networkType)
            .setRequiresCharging(requiresCharging)
            .setIntervalMillis(intervalInMillis);

    if (isPeriodic) {
        builder.setPeriodic(intervalInMillis);
    }

    Job job = builder.build();
  • Each job has a unique ID. This ID helps to identify the job later to update requirements or to cancel the job. In case this unique ID is not specified in the Job object, one will be auto-generated using Job.generateJobID() method.

  • Once a Job object has been created with the relevant parameters, you can add this job using SmartScheduler class.

	SmartScheduler jobScheduler = SmartScheduler.getInstance(getApplicationContext());
    boolean result = jobScheduler.addJob(job);

    if (result) {
        // Job successfully added here
    }
  • A Non-Periodic Job will be removed automatically once it has been scheduled successfully. For Periodic Jobs, call SmartScheduler.removeJob(jobID) method to remove the job.
	SmartScheduler jobScheduler = SmartScheduler.getInstance(getApplicationContext());
    boolean result = jobScheduler.removeJob(JOB_ID);

	if (result) {
        // Job successfully removed here
    }

Utility Methods

  • To check if a job (periodic or non-periodic) is currently scheduled for a given jobID, call SmartScheduler.contains(jobID) method as depicted below. This method returns true in case a Job is currently scheduled for the given jobID, false otherwise.
    SmartScheduler jobScheduler = SmartScheduler.getInstance(getApplicationContext());
    boolean result = jobScheduler.contains(JOB_ID);
    
	if (result) {
        // Job currently scheduled
    }    
  • To get a scheduled Job for a given jobID, call SmartScheduler.get(jobID) method as depicted below. This method returns a Job object for the given jobID in case one is currently scheduled, null otherwise.
    SmartScheduler jobScheduler = SmartScheduler.getInstance(getApplicationContext());
    Job scheduledJob = jobScheduler.get(JOB_ID);
    
	if (scheduledJob != null) {
        // Valid job has been scheduled for given jobID
    }    

Contribute

Please use the issues tracker to raise bug reports and feature requests. We'd love to see your pull requests, so send them in!

About HyperTrack

Developers use HyperTrack to build location features, not infrastructure. We reduce the complexity of building and operating location features to a few APIs that just work. Check it out. Sign up and start building! Join our Slack community for instant responses. You can also email us at [email protected]

License

MIT License

Copyright (c) 2016 HyperTrack

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].