Forgot add this information in video. 1. The GitHub link to the demo used in the video is available in description section below the video. 2. Github Ticket link explaining why PeriodicWorkRequest can not be chained is provided below the description section Happy coding!! Cheers...
@karthikeyanm99222 жыл бұрын
Thanks for your sincere efforts on all these videos !
@nhanhuynh24433 жыл бұрын
please keep it going, you're gonna help me get a job soon. Thank you!
@Codetutor-DemystifyCoding3 жыл бұрын
Best of luck with you job hunt.
@codingsick92673 жыл бұрын
Very useful video thanks for making video such a complex topic
@mohsinikram89213 жыл бұрын
You stopped the worker 2 but still it printed the worker2 log after "worker2 has been canceled " at 6:11? Why ? , I thought it supposed to be stop immediately but it could not happened.
@Pratik1996shinde3 жыл бұрын
Already started work stops with little delay which is why log got printed
@pradeepsahu13753 жыл бұрын
Sir I love to watch your android video's sir please create video's on app data Security retaliated like encryption and decryption in android. Sir when you create video on a topic you don't leave a single point of that topic that's why I love to watch your video .
@surajpadyal85713 жыл бұрын
Same request from me
@Nithin_Coorg2 жыл бұрын
Crisp!
@shashwath.v.kamath75743 жыл бұрын
Hi Anil...I wanted to check long running task scenario. From the videos it looks like this is good for short or scheduled tasks but what about long running tasks? In that do we need to still opt for Foreground services?
@Codetutor-DemystifyCoding3 жыл бұрын
Have you explored this - developer.android.com/topic/libraries/architecture/workmanager/advanced/long-running
@mrehan59743 жыл бұрын
Sir i have one question that Worker Services is not working in Android version 10 when my app is killed. so please give me answer as soon as. and let me know how can i solve these issue. thanks
@Pratik1996shinde3 жыл бұрын
Hi sir great tutorial as always just one quick question, is there a way for me to receive data from one of the work in chain lets say work 2 and pass it to say work3 ?
@Codetutor-DemystifyCoding2 жыл бұрын
Yes!! That's called work chaining. This video in a way talks about it.
@vengateshm21223 жыл бұрын
What is the max limit for the work chain?
@Codetutor-DemystifyCoding3 жыл бұрын
Theoretically speaking there should be no limit, but I feel it should not be more than number of cores available on the device. This is exactly how we used to limit the number of threads in a thread pool or Executor. Can some body confirm this?
@yogeshsingh16213 жыл бұрын
Still this not work while app is in killed mode..
@Codetutor-DemystifyCoding3 жыл бұрын
Did you write the code on your own or did you check out the code from Github link I have given and run it?