No support for Scheduling jobs at exact time
kpradeepkumarreddy opened this issue · 3 comments
kpradeepkumarreddy commented
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
yes its not triggering jobs at exact time
kpradeepkumarreddy commented
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 ***@***.***> 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
<#265 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AD6AXULHA5W7ZNIHKM2TQSDPTKABFANCNFSM4FREBOEQ>
.
toddshansen commented
closing as this will not be added to FJD given the deprecation.