googlearchive / firebase-jobdispatcher-android

DEPRECATED please see the README.md below for details.
Apache License 2.0
1.79k stars 208 forks source link

No support for Scheduling jobs at exact time #265

Closed kpradeepkumarreddy closed 5 years ago

kpradeepkumarreddy commented 6 years ago

I want to schedule job at a particular time, instead of giving the execution window.

evernote's android-job library provides this feature.

sample code to trigger exact jobs in evernote android-job library int jobId = new JobRequest.Builder(DemoSyncJob.TAG) .setExact(20_000L) .build() .schedule();

Can you please add the same feature in firebaseJobDispatcher also ?

droid-lover commented 6 years ago

yes its not triggering jobs at exact time

kpradeepkumarreddy commented 5 years ago

You should be using WorkManager API. WorkManagerApi is an replacement for FirebaseJobDispatcher API. I think FirebaseJobDispatcher is deprecated

On Thu, May 2, 2019 at 11:35 AM emailsubjekt notifications@github.com wrote:

When can we expect all these issues to be fixed? I'd very much like to use your library but I can't due to all the unresolved issues.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/firebase/firebase-jobdispatcher-android/issues/265#issuecomment-488561818, or mute the thread https://github.com/notifications/unsubscribe-auth/AD6AXULHA5W7ZNIHKM2TQSDPTKABFANCNFSM4FREBOEQ .

toddshansen commented 5 years ago

closing as this will not be added to FJD given the deprecation.