What I want to do sounds pretty simple in theory - I need to scan all the MP3 files present in the device, and perform some metadata updates by querying something like AcoustId or GraceNote.
I'm planning on using a class by extending IntentService
, and in the onHandleIntent()
, I plan on creating N threads, each thread updating the metadata of a single file. The main reason for me using IntentService
s is that I need no communication with the UI thread, and that the task at hand is relatively time consuming.
My main question is this: Will the IntentService support custom threads? If not, what is my best alternative? I know I shouldn't be using AsyncTask
s, as they're used only for relatively small computations.
Thanks in advance!
No, an
IntentService
only has a single worker thread, handling incoming Intents sequentially. You should just extendService
if you want to do something more complicated.