JobIntentService는 IntentService와 매우 비슷합니다. 인텐트를 전달하여 서비스에서 어떤 Job을 수행하도록 할 수 있습니다.
차이점은 JobIntentService는 JobScheduler로 동작이 됩니다. JobService는 startService()로 실행했던 반면에 JobIntentService는 enqueueWork()로 실행할 수 있습니다.
Job은 일반적으로 바로 실행되지만 절전모드(Doze mode) 등의 이유로 지연될 수 있습니다. 또한 앱이 Foreground에서 실행중이 아니라면 서비스가 실행되지 않을 수 있습니다. 하지만 JobIntentService를 통해서 예약된 작업은 앱이 background 상태라도 서비스가 실행됩니다.
JobIntentService 구현 및 실행하는 방법에 대해서 알아보겠습니다.
이 글의 예제는 kotlin으로 작성되었습니다.
구현
먼저 JobIntentService
를 상속받는 서비스를 생성합니다.
class MyJobIntentService : JobIntentService() {
companion object {
const val TAG = "MyJobIntentService"
const val JOB_ID = 1001
}
// 1
fun enqueueWork(context: Context, work: Intent) {
enqueueWork(context, MyJobIntentService::class.java, JOB_ID, work)
}
// 2
override fun onCreate() {
super.onCreate()
Log.d(TAG, "Job execution started")
}
// 3
override fun onHandleWork(intent: Intent) {
Log.d(TAG, "MSG: ${intent?.getStringExtra("MSG")}")
for (i in 1..10) {
Thread.sleep(1000)
Log.d(TAG, "onHandleWork() : $i")
}
}
// 4
override fun onDestroy() {
super.onDestroy()
Log.d(TAG, "Job execution finished")
}
}
- JobIntentService를 실행할 때 사용하는 method입니다. enqueueWork()는 Job을 추가하는 API입니다.
- JobIntentService가 생성될 때 호출됩니다.
- Job이 추가되면(enqueueWork), onHandleWork()가 callback됩니다.
- 서비스가 종료되면 호출됩니다.
그리고 AndroidManifest.xml
에 다음과 같이 등록해야 합니다.
<uses-permission android:name="android.permission.WAKE_LOCK" />
<service android:name=".MyJobIntentService"
android:permission="android.permission.BIND_JOB_SERVICE"/>
android.permission.WAKE_LOCK
permission을 등록하는 이유는 Job이 실행될 때 Wake Lock
을 잡을 수 있기 때문입니다.
서비스에 android.permission.BIND_JOB_SERVICE
퍼미션을 등록하는 이유는 JobService만 이 서비스에 접근할 수 있게 만들기 위해서 입니다.
실행
서비스는 다음과 같은 코드로 실행할 수 있습니다.
enqueueWork()
는 Job을 등록하고 scheduling될 수 있게 만듭니다.
val intent = Intent(this, MyJobIntentService::class.java)
intent.putExtra("MSG", "Do something")
startService(intent)
MyJobIntentService().enqueueWork(this,intent)
위 코드 실행 결과는 다음과 같습니다.
12-29 21:36:31.675 9995 10021 D MyJobIntentService: MSG: Do something
12-29 21:36:32.686 9995 10021 D MyJobIntentService: onHandleWork() : 1
12-29 21:36:33.698 9995 10021 D MyJobIntentService: onHandleWork() : 2
12-29 21:36:34.709 9995 10021 D MyJobIntentService: onHandleWork() : 3
12-29 21:36:35.737 9995 10021 D MyJobIntentService: onHandleWork() : 4
12-29 21:36:36.751 9995 10021 D MyJobIntentService: onHandleWork() : 5
12-29 21:36:37.761 9995 10021 D MyJobIntentService: onHandleWork() : 6
12-29 21:36:38.774 9995 10021 D MyJobIntentService: onHandleWork() : 7
12-29 21:36:39.785 9995 10021 D MyJobIntentService: onHandleWork() : 8
12-29 21:36:40.798 9995 10021 D MyJobIntentService: onHandleWork() : 9
12-29 21:36:41.810 9995 10021 D MyJobIntentService: onHandleWork() : 10
12-29 21:36:41.815 9995 9995 D MyJobIntentService: Job execution finished
이 글에서 사용한 예제는 GitHub에서 확인할 수 있습니다.
참고
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력