IntentService 中的 NOT UI THREAD 中执行了什么?

What is executed in the NOT UI THREAD in a IntentService?

我不确定 IntentService 的哪些部分没有在 UI 线程上执行。谁能稍微解释一下?

onHandleIntent(android.content.Intent) 在工作线程上调用。其他回调在 UI 线程

上执行