python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Worker class not getting triggered by the OneTimeWorkRequest
I have this OneTimeWorkRequest that don't trigger my SendFeedbackMessageWorker.
The work request should get triggered with the constraint ".setRequiredNetworkType(NetworkType.CONNECTED)", bu...
CompileNow
Votes: 0
Answers: 1
How to avoid celery tasks interfering eachother?
Scenario
I have a celery task which can be triggered via API. The task involves
Deleting all old database entries of a user
Calculating results and
storing results as new database entries
In a devel...
Arnd
Votes: 0
Answers: 0
How to synchronize multiple Background services (.Net 6 ) during initialization step?
I have two Workers in my .net6 project like below:
.ConfigureServices((hostContext, services) =>
{
services.AddHostedService<Worker1>();
services.AddHostedService<W...
Walker66
Votes: 0
Answers: 0
Resend Retrofit API call with a OneTimeWorkRequest
I am stuck and can't get my OneTimeWorkRequest to work properly.
I have got this Retrofit API call I want to resend to the backend incase there's no network connectivity or similar on the phone. What ...
CompileNow
Votes: 0
Answers: 1