I would like to ask if there is something like intent overflow when
WakefulIntentService.sendWakefulWork()
or in general
IntentService.startService()
is called very often not waiting for previous jobs to be finished. I am thinking of a situation that due to user's input it might happen that the job takes 1 minute but it is called every 10 seconds. Should I implement any mechanism to protect from starting too many jobs? Thanks for all answers