WorkManager๋ฅผ ํตํด ์ฌ๋ฌ ์ข ์ ์์ ๋ค์ ์ง์ ํ๊ณ ์คํ ์์๋ฅผ ์ ์ํ๋ ์์ ์ฒด์ธ์ ์์ฑํ๊ณ ๋๊ธฐ์ด์ ์ถ๊ฐํ ์ ์์. ํน์ ์์๋ก ์ฌ๋ฌ ์์ ์ ์คํํด์ผ ํ ๋ ํนํ ์ ์ฉํจ.
์์
์ฒด์ธ์ ๋ง๋ค๊ธฐ ์ํด WorkContinuation์ ์ธ์คํด์ค๋ฅผ ๋ฐํํ๋ WorkManager.beginWith(OneTimeWorkRequest)
๋๋ WorkManager.beginWith(List<OneTimeWorkRequest>)
๋ฅผ ์ฌ์ฉํ ์ ์์.
WorkContinuation์ then(OneTimeWorkRequest)
๋๋ then(List<OneTimeWorkRequest>)
๋ฅผ ์ฌ์ฉํ์ฌ ์ข
์ OneTimeWorkRequest ์ธ์คํด์ค๋ฅผ ์ถ๊ฐํ ์ ์์.
WorkContinuation.then(...)์ ํธ์ถํ ๋๋ง๋ค WorkContinuation์ ์ ์ธ์คํด์ค๊ฐ ๋ฐํ๋จ.
OneTimeWorkRequest ์ธ์คํด์ค ๋ชฉ๋ก์ ์ถ๊ฐํ๋ฉด ์ด๋ฌํ ์์ฒญ์ด ์ ์ฌ์ ์ผ๋ก ๋ณ๋ ฌ๋ก ์คํ๋ ์ ์์.
๋ง์ง๋ง์ผ๋ก WorkContinuation.enqueue() ๋ฉ์๋๋ฅผ ์ฌ์ฉํ์ฌ WorkContinuation ์ฒด์ธ์ enqueue()ํ ์ ์์.
WorkManager.getInstance(myContext)
// Candidates to run in parallel
.beginWith(listOf(plantName1, plantName2, plantName3))
// Dependent work (only runs after all previous work in chain)
.then(cache)
.then(upload)
// Call enqueue to kick things off
.enqueue()
OneTimeWorkRequest ์ธ์คํด์ค๋ฅผ ์ฐ๊ฒฐํ๋ฉด ์์ ์์ ์์ฒญ์ ์ถ๋ ฅ์ด ํ์ ํญ๋ชฉ์ ๋ํ ์ ๋ ฅ์ผ๋ก ์ ๋ฌ๋จ. ๋ฐ๋ผ์ ์์ ์ฝ๋์์๋ platName1, plantName2, plantName3์ ์ถ๋ ฅ์ด ์บ์ ์์ฒญ์ ๋ํ ์ ๋ ฅ์ผ๋ก ์ ๋ฌ๋จ.
OverwritingInputMerger๋ ๊ธฐ๋ณธ ๋ณํฉ ๋ฐฉ๋ฒ. ๋ณํฉ์ ํค ์ถฉ๋์ด ์๋ ๊ฒฝ์ฐ ํค์ ์ต์ ๊ฐ์ด ๊ฒฐ๊ณผ ์ถ๋ ฅ ๋ฐ์ดํฐ์ ์ด์ ๋ฒ์ ์ ๋ฎ์ด์.
*์ถฉ๋์ด ์ผ์ด๋์ง ์์์ ๋
์์ ์์์ ๋ชจ๋ plant์ ์ด๋ฆ ์ถ๋ ฅ์ ๋ณด์กดํ๋ ค๋ฉด ArrayCreatingInputMerger๋ฅผ ์ฌ์ฉํด์ผ ํจ.
val cache: OneTimeWorkRequest = OneTimeWorkRequestBuilder<PlantWorker>()
.setInputMerger(ArrayCreatingInputMerger::class)
.setConstraints(constraints)
.build()
ArrayCreatingInputMerger๋ ๊ฐ ํค๋ฅผ ๋ฐฐ์ด๊ณผ ์์ผ๋ก ์ฐ๊ฒฐํจ.
์ถฉ๋์ด ์ผ์ด๋ฌ์ ๊ฒฝ์ฐ
OneTimeWorkRequest ์ฒด์ธ์ ์์ ์ด ์ฑ๊ณต์ ์ผ๋ก ์๋ฃ๋๋ฉด, ์ฆ Result.success()๋ฅผ ๋ฐํํ๋ฉด ์์ฐจ์ ์ผ๋ก ์คํ๋จ. ์์ ์์ฒญ์ ์คํ ์ค์ ์คํจํ๊ฑฐ๋ ์ทจ์๋ ์ ์์ด์ ์ข ์ ์์ ์์ฒญ์ ํ์ ์ํฅ์ ๋ฏธ์นจ.
์ฒซ ๋ฒ์งธ OneTimeWorkRequest๊ฐ ์์ ์์ฒญ ์ฒด์ธ์์ ํ์ ์ถ๊ฐ๋๋ฉด ์ฒซ ๋ฒ์งธ ์์ ์์ฒญ์ ์์ ์ด ์๋ฃ๋ ๋๊น์ง ๋ชจ๋ ํ์ ์์ ์์ฒญ์ด ์ฐจ๋จ๋จ.
ํ์ ์ถ๊ฐ๋๊ณ ๋ชจ๋ ์์
์ ์ฝ์กฐ๊ฑด์ด ์ถฉ์กฑ๋๋ฉด ์ฒซ ๋ฒ์งธ ์์
์์ฒญ์ด ์คํ๋๊ธฐ ์์ํจ.
์์
์ด ๋ฃจํธ OneTimeWorkRequest ๋๋ List<OneTimeWorkRequest>
์์ ์ฑ๊ณต์ ์ผ๋ก ์๋ฃ๋๋ฉด, ์ฆ Result.success()๋ฅผ ๋ฐํํ๋ฉด ๋ค์ ์ข
์ ์์
์์ฒญ ์ธํธ๊ฐ ํ์ ์ถ๊ฐ๋จ.
๊ฐ ์์ ์์ฒญ์ด ์ฑ๊ณต์ ์ผ๋ก ์๋ฃ๋๋ค๋ฉด ์ฒด์ธ์ ๋ชจ๋ ์์ ์ด ์๋ฃ๋ ๋๊น์ง ์์ ์์ฒญ ์ฒด์ธ์ ๋๋จธ์ง ๋ถ๋ถ ์ ์ฒด์ ์ด์ ๋์ผํ ํจํด์ด ์ ์ฉ๋จ.
์์ ์๊ฐ ์์ ์์ฒญ์ ์ฒ๋ฆฌํ๋ ๋์ ์ค๋ฅ๊ฐ ๋ฐ์ํ๋ฉด ๊ฐ๋ฐ์๊ฐ ์ ์ํ ๋ฐฑ์คํ ์ ์ฑ ์ ๋ฐ๋ผ ์์ฒญ์ ์ฌ์๋ํ ์ ์์. ์ฒด์ธ์ ์ํ ์์ฒญ์ ์ฌ์๋ํ๋ฉด ์ ๊ณต๋ ์ ๋ ฅ ๋ฐ์ดํฐ๋ก ํด๋น ์์ฒญ๋ง ์ฌ์๋๋จ. ๋์์ ์คํ๋๋ ๋ชจ๋ ์์ ์ ์ํฅ์ ๋ฐ์ง ์์.
์ฌ์๋ ์ ์ฑ ์ด ์ ์๋์ด ์์ง ์๊ฑฐ๋ ์๋ ๊ฒฝ์ฐ ๋๋ OneTimeWorkRequest๊ฐ Result.failure()๋ฅผ ๋ฐํํ๋ ์ํ์ ๋๋ฌํ๋ฉด ์์ ์์ฒญ๊ณผ ๋ชจ๋ ์ข ์ ์์ ์์ฒญ์ด FAILED๋ก ํ์๋จ
WorkManager์๋ ์ฅ๊ธฐ ์คํ Worker์ ๋ํ ์ง์์ด ๋ด์ฅ๋์ด ์์. ์ด๋ฌํ ๊ฒฝ์ฐ WorkManager๋ ์ด ์์ ์ด ์คํ๋๋ ๋์ ๊ฐ๋ฅํ๋ฉด ํ๋ก์ธ์ค๋ฅผ ํ์ฑ ์ํ๋ก ์ ์งํด์ผ ํ๋ค๋ ์ ํธ๋ฅผ OS์ ์ ๊ณตํ ์ ์์. ์ด๋ฌํ Worker๋ 10๋ถ ์ด์ ์คํ๋ ์ ์์. ์ด๊ฒ์ ์ฌ์ฉ ์ฌ๋ก๋ก๋ ์ผ๊ด ์ ๋ก๋ ๋๋ ์ผ๊ด ๋ค์ด๋ก๋(์ฒญํฌ ๋ถ๊ฐ), ML ๋ชจ๋ธ์ ๋ก์ปฌ ํฌ๋ฐ์นญ, ์ฑ ์ฌ์ฉ์์๊ฒ ์ค์ํ ์์ ๋ฑ์ด ์์.
๋ด๋ถ์ ์ผ๋ก WorkManager๋ ๊ฐ๋ฐ์๋ฅผ ๋์ ํด์ ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค๋ฅผ ๊ด๋ฆฌํ๊ณ ์คํํ์ฌ WorkRequest๋ฅผ ์คํํ๋ฉฐ ๊ตฌ์ฑ ๊ฐ๋ฅํ ์๋ฆผ๋ ํ์ํจ.
์ฝํ๋ฆฐ์ผ๋ก ์ฝ๋ฉํ ๋์ ์๋ฐ๋ก ์ฝ๋ฉํ ๋ ๋ค๋ฅธ ์ ๊ทผ๋ฒ์ ์ฌ์ฉ.
class DownloadWorker(context: Context, parameters: WorkerParameters) :
CoroutineWorker(context, parameters) {
private val notificationManager =
context.getSystemService(Context.NOTIFICATION_SERVICE) as
NotificationManager
override suspend fun doWork(): Result {
val inputUrl = inputData.getString(KEY_INPUT_URL)
?: return Result.failure()
val outputFile = inputData.getString(KEY_OUTPUT_FILE_NAME)
?: return Result.failure()
// Mark the Worker as important
val progress = "Starting Download"
setForeground(createForegroundInfo(progress))
download(inputUrl, outputFile)
return Result.success()
}
private fun download(inputUrl: String, outputFile: String) {
// Downloads a file and updates bytes read
// Calls setForeground() periodically when it needs to update
// the ongoing Notification
}
// Creates an instance of ForegroundInfo which can be used to update the
// ongoing notification.
private fun createForegroundInfo(progress: String): ForegroundInfo {
val id = applicationContext.getString(R.string.notification_channel_id)
val title = applicationContext.getString(R.string.notification_title)
val cancel = applicationContext.getString(R.string.cancel_download)
// This PendingIntent can be used to cancel the worker
val intent = WorkManager.getInstance(applicationContext)
.createCancelPendingIntent(getId())
// Create a Notification channel if necessary
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
createChannel()
}
val notification = NotificationCompat.Builder(applicationContext, id)
.setContentTitle(title)
.setTicker(title)
.setContentText(progress)
.setSmallIcon(R.drawable.ic_work_notification)
.setOngoing(true)
// Add the cancel action to the notification which can
// be used to cancel the worker
.addAction(android.R.drawable.ic_delete, cancel, intent)
.build()
return ForegroundInfo(notificationId, notification)
}
@RequiresApi(Build.VERSION_CODES.O)
private fun createChannel() {
// Create a Notification channel
}
companion object {
const val KEY_INPUT_URL = "KEY_INPUT_URL"
const val KEY_OUTPUT_FILE_NAME = "KEY_OUTPUT_FILE_NAME"
}
}
ListenableFuture<Void>
๋ฅผ ๋ฐํํ๋ setForegroundAsync() API๋ฅผ ํธ์ถํ ์ ์์. ๋ํ ์งํ ์ค์ธ Notification์ ์
๋ฐ์ดํธํ๊ธฐ ์ํด setForegroundAsync()๋ฅผ ํธ์ถํ ์๋ ์์.public class DownloadWorker extends Worker {
private static final String KEY_INPUT_URL = "KEY_INPUT_URL";
private static final String KEY_OUTPUT_FILE_NAME = "KEY_OUTPUT_FILE_NAME";
private NotificationManager notificationManager;
public DownloadWorker(
@NonNull Context context,
@NonNull WorkerParameters parameters) {
super(context, parameters);
notificationManager = (NotificationManager)
context.getSystemService(NOTIFICATION_SERVICE);
}
@NonNull
@Override
public Result doWork() {
Data inputData = getInputData();
String inputUrl = inputData.getString(KEY_INPUT_URL);
String outputFile = inputData.getString(KEY_OUTPUT_FILE_NAME);
// Mark the Worker as important
String progress = "Starting Download";
setForegroundAsync(createForegroundInfo(progress));
download(inputUrl, outputFile);
return Result.success();
}
private void download(String inputUrl, String outputFile) {
// Downloads a file and updates bytes read
// Calls setForegroundAsync(createForegroundInfo(myProgress))
// periodically when it needs to update the ongoing Notification.
}
@NonNull
private ForegroundInfo createForegroundInfo(@NonNull String progress) {
// Build a notification using bytesRead and contentLength
Context context = getApplicationContext();
String id = context.getString(R.string.notification_channel_id);
String title = context.getString(R.string.notification_title);
String cancel = context.getString(R.string.cancel_download);
// This PendingIntent can be used to cancel the worker
PendingIntent intent = WorkManager.getInstance(context)
.createCancelPendingIntent(getId());
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
createChannel();
}
Notification notification = new NotificationCompat.Builder(context, id)
.setContentTitle(title)
.setTicker(title)
.setSmallIcon(R.drawable.ic_work_notification)
.setOngoing(true)
// Add the cancel action to the notification which can
// be used to cancel the worker
.addAction(android.R.drawable.ic_delete, cancel, intent)
.build();
return new ForegroundInfo(notificationId, notification);
}
@RequiresApi(Build.VERSION_CODES.O)
private void createChannel() {
// Create a Notification channel
}
}
โญ ์ฐธ๊ณ : ์ฑ์ด ํ๊ฒํ ํ๋ API ์์ค๊ณผ ์๋น์ค๊ฐ ์คํํ๋ ์์ ์ ์ข ๋ฅ์ ๋ฐ๋ผ ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค ์ ํ์ ์ ์ธํด์ผ ํ ์ ์์. ํ๊ฒํ ํ๋ Android ๋ฒ์ ๊ณผ ๊ด๊ณ์์ด ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค ์ ํ์ ์ ์ธํ๋ ๊ฒ์ด ์ข์.
์ฑ์ด Android 14 (API ์์ค 34) ์ด์์ ํ๊ฒํ ํ๋ ๊ฒฝ์ฐ ๋ชจ๋ ์ฅ๊ธฐ ์คํ worker์ ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค ์ ํ์ ์ง์ ํด์ผํจ.
์ฑ์์ Android 10 (API ์์ค 29) ์ด์์ ํ๊ฒํ ํ๊ณ ์์น์ ์ก์ธ์คํด์ผ ํ๋ ์ฅ๊ธฐ ์คํ worker๋ฅผ ํฌํจํ๋ ๊ฒฝ์ฐ worker๊ฐ location์ ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค ์ ํ์ ์ฌ์ฉํจ์ ๋ํ๋.
์ฑ์ด Android 11 (API ์์ค 30) ์ด์์ ํ๊ฒํ ํ๊ณ ์นด๋ฉ๋ผ ๋๋ ๋ง์ดํฌ์ ์ก์ธ์คํด์ผ ํ๋ ์ฅ๊ธฐ ์คํ worker๋ฅผ ํฌํจํ๋ ๊ฒฝ์ฐ ๊ฐ๊ฐ camera ๋๋ microphone ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค ์ ํ์ ์ ์ธ.
์ฑ ๋งค๋ํ์คํธ์์ worker์ ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค ์ ํ์ ์ ์ธ.
<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="location|microphone"
tools:node="merge" />
setForeground() ๋๋ setForegroundAsync()๋ฅผ ํธ์ถํ ๋๋ ํฌ๊ทธ๋ผ์ด๋ ์๋น์ค ์ ํ์ ์ง์ .
โญ ์ฐธ๊ณ : Android 14 (API ์์ค 34)๋ถํฐ setForeground() ๋๋ setForegroundAsync()๋ฅผ ํธ์ถํ๋ฉด ์์คํ ์์ ์๋น์ค ์ ํ์ ๋ฐ๋ผ ํน์ ๊ธฐ๋ณธ ์๊ฑด์ ํ์ธ
private fun createForegroundInfo(progress: String): ForegroundInfo {
// ...
return ForegroundInfo(NOTIFICATION_ID, notification,
FOREGROUND_SERVICE_TYPE_LOCATION or
FOREGROUND_SERVICE_TYPE_MICROPHONE) }
WorkManager๋ Worker์ ์ค๊ฐ ์งํ ์ํฉ์ ์ค์ ํ๊ณ ๊ด์ฐฐํ ์ ์๋๋ก ์ง์ ์ ๊ณต.
์ฑ์ด ํฌ๊ทธ๋ผ์ด๋์ ์๋ ๋์ Worker๊ฐ ์คํ์ค์ธ ๊ฒฝ์ฐ WorkInfo์ LiveData๋ฅผ ๋ฐํํ๋ API๋ฅผ ์ฌ์ฉํ์ฌ ์ด ์ ๋ณด๋ฅผ ์ฌ์ฉ์์๊ฒ ํ์ํ ์ ์์.
ListenableWorker๋ ์ค๊ฐ ์งํ ์ํฉ์ ์ ์งํ ์ ์๋ setProgressAsync() API๋ฅผ ์ง์.
์ด API๋ฅผ ์ฌ์ฉํ๋ฉด ๊ฐ๋ฐ์๋ UI์์ ๊ด์ฐฐํ ์ ์๋ ์ค๊ฐ ์งํ ์ํฉ์ ์ค์ ํ ์ ์์.
์งํ ์ํฉ์ ์ง๋ ฌํ ๊ฐ๋ฅํ ์์ฑ ์ปจํ
์ด๋์ธ ๋ฐ์ดํฐ ์ ํ์ผ๋ก ํ์๋จ.
์งํ ์ ๋ณด๋ ListenableWorker๊ฐ ์คํ๋๋ ๋์์๋ง ๊ด์ฐฐํ๊ณ ์
๋ฐ์ดํธํ ์ ์์.
ListenableWorker์ ์คํ์ด ์๋ฃ๋ ํ ์งํ๋ฅ ์ ์ค์ ํ๋ ค๋ ์๋๋ ๋ฌด์๋จ.
getWorkInfoByโฆ() ๋๋ getWorkInfoByโฆLiveData() ๋ฉ์๋ ์ค ํ๋๋ฅผ ์ฌ์ฉํ์ฌ ์งํ ์ํฉ ์ ๋ณด๋ฅผ ๊ด์ฐฐํ ์๋ ์์.
์ด๋ฌํ ๋ฉ์๋๋ Data๋ฅผ ๋ฐํํ๋ ์๋ก์ด getProgress() ๋ฉ์๋๊ฐ ์๋ WorkInfo์ ์ธ์คํด์ค๋ฅผ ๋ฐํํจ.
ListenableWorker ๋๋ Worker๋ฅผ ์ฌ์ฉํ๋ Java ๊ฐ๋ฐ์์ ๊ฒฝ์ฐ setProgressAsync() API๋ ListenableFuture<Void>
๋ฅผ ๋ฐํํจ.
์ ๋ฐ์ดํธ ํ๋ก์ธ์ค์๋ ์งํ๋ฅ ์ ๋ณด๋ฅผ ๋ฐ์ดํฐ๋ฒ ์ด์ค์ ์ ์ฅํ๋ ์์ ์ด ํฌํจ๋๋ฏ๋ก ์ ๋ฐ์ดํธ ์งํ๋ฅ ์ ๋น๋๊ธฐ์.
Kotlin์์๋ CoroutineWorker ๊ฐ์ฒด์ setProgress() ํ์ฅ ํจ์๋ฅผ ์ฌ์ฉํ์ฌ ์งํ ์ ๋ณด๋ฅผ ์ ๋ฐ์ดํธํ ์ ์์.
//java
import android.content.Context;
import androidx.annotation.NonNull;
import androidx.work.Data;
import androidx.work.Worker;
import androidx.work.WorkerParameters;
public class ProgressWorker extends Worker {
private static final String PROGRESS = "PROGRESS";
private static final long DELAY = 1000L;
public ProgressWorker(
@NonNull Context context,
@NonNull WorkerParameters parameters) {
super(context, parameters);
// Set initial progress to 0
setProgressAsync(new Data.Builder().putInt(PROGRESS, 0).build());
}
@NonNull
@Override
public Result doWork() {
try {
// Doing work.
Thread.sleep(DELAY);
} catch (InterruptedException exception) {
// ... handle exception
}
// Set progress to 100 after you are done doing your work.
setProgressAsync(new Data.Builder().putInt(PROGRESS, 100).build());
return Result.success();
}
}
//kotlin
import android.content.Context
import androidx.work.CoroutineWorker
import androidx.work.Data
import androidx.work.WorkerParameters
import kotlinx.coroutines.delay
class ProgressWorker(context: Context, parameters: WorkerParameters) :
CoroutineWorker(context, parameters) {
companion object {
const val Progress = "Progress"
private const val delayDuration = 1L
}
override suspend fun doWork(): Result {
val firstUpdate = workDataOf(Progress to 0)
val lastUpdate = workDataOf(Progress to 100)
setProgress(firstUpdate)
delay(delayDuration)
setProgress(lastUpdate)
return Result.success()
}
}
์งํ ์ ๋ณด๋ฅผ ๊ด์ฐฐํ๊ธฐ ์ํด getWorkInfoByโฆ() ๋๋ getWorkInfoByโฆLiveData() ๋ฉ์๋๋ฅผ ์ฌ์ฉํ๊ณ WorkInfo์ ๋ํ ์ฐธ์กฐ๋ฅผ ๊ฐ์ ธ์ฌ ์ ์์.
//java
WorkManager.getInstance(getApplicationContext())
// requestId is the WorkRequest id
.getWorkInfoByIdLiveData(requestId)
.observe(lifecycleOwner, new Observer<WorkInfo>() {
@Override
public void onChanged(@Nullable WorkInfo workInfo) {
if (workInfo != null) {
Data progress = workInfo.getProgress();
int value = progress.getInt(PROGRESS, 0)
// Do something with progress
}
}
});
//kotlin
WorkManager.getInstance(applicationContext)
// requestId is the WorkRequest id
.getWorkInfoByIdLiveData(requestId)
.observe(observer, Observer { workInfo: WorkInfo? ->
if (workInfo != null) {
val progress = workInfo.progress
val value = progress.getInt(Progress, 0)
// Do something with progress information
}
})
WorkManager๋ฅผ ์ฌ์ฉํ๋ฉด ์ด๋ฏธ ๋๊ธฐ์ด์ ์ถ๊ฐํ WorkRequest๋ฅผ ์
๋ฐ์ดํธํ ์ ์์.
์ ์ฝ ์กฐ๊ฑด์ ์์ฃผ ๋ณ๊ฒฝํ๊ฑฐ๋ ์์
์๋ฅผ ์ฆ์ ์
๋ฐ์ดํธํด์ผ ํ๋ ๋๊ท๋ชจ ์ฑ์์ ์ข
์ข
ํ์.
WorkManager ๋ฒ์ 2.8.0๋ถํฐ๋ updateWork() API๊ฐ ์ด๋ฅผ ์ํ.
updateWork() ๋ฉ์๋๋ฅผ ์ฌ์ฉํ๋ฉด ์ ํญ๋ชฉ์ ์๋์ผ๋ก ์ทจ์ํ๊ณ ๋๊ธฐ์ด์ ์ถ๊ฐํ๋ ๊ณผ์ ์ ๊ฑฐ์น์ง ์๊ณ ๋ ์ฆ์ ๋ณ๊ฒฝ ๊ฐ๋ฅ.
์ผ๋ฐ์ ์ผ๋ก ๊ธฐ์กด WorkRequest๋ฅผ ์ทจ์ํ๊ณ ์ WorkRequest๋ฅผ ๋๊ธฐ์ด์ ์ถ๊ฐํ๋ ๊ฒ์ ํผํด์ผํจ.
๊ทธ๋ ๊ฒ ํ๋ฉด ์ฑ์ด ํน์ ์์
์ ๋ฐ๋ณตํ๊ฒ ๋ ์ ์์ผ๋ฉฐ ์๋นํ ์์ ์ถ๊ฐ ์ฝ๋๋ฅผ ์์ฑํด์ผ ํ ์๋ ์์.
โ WorkRequest๋ฅผ ์ทจ์ํ๋ฉด ๋ฌธ์ ๊ฐ ๋ฐ์ํ ์ ์๋ ์์
1. Back-end request
์๋ฒ์ ๋ณด๋ผ ํ์ด๋ก๋๋ฅผ ๊ณ์ฐํ๋ ๋์ Worker๋ฅผ ์ทจ์ํ๋ฉด ์ Worker๋ ์ฒ์๋ถํฐ ๋ค์ ์์ํ์ฌ ์ ์ฌ์ ์ผ๋ก ๋น์ฉ์ด ๋ง์ด ๋๋ ํ์ด๋ก๋๋ฅผ ๋ค์ ๊ณ์ฐํด์ผํจ.
2. Scheduling
PeriodicWorkRequest๋ฅผ ์ทจ์ํ๊ณ ์ PeriodicWorkRequest๊ฐ ๋์ผํ ์ผ์ ์ ๋ฐ๋ผ ์คํ๋๋๋ก ํ๋ ค๋ฉด ์ ์คํ ์๊ฐ์ด ์ด์ ์์
์์ฒญ๊ณผ ์ผ์นํ๋์ง ํ์ธํ๊ธฐ ์ํด ์๊ฐ ์คํ์
์ ๊ณ์ฐํด์ผํจ.
updateWork() API๋ฅผ ์ฌ์ฉํ๋ฉด ์ ์์ฒญ์ ์ทจ์ํ๊ณ ๋๊ธฐ์ด์ ์ถ๊ฐํ๋ ๋ฌธ์ ์์ด ์์ ์์ฒญ์ ์ ์ฝ ์กฐ๊ฑด๊ณผ ๊ธฐํ ๋งค๊ฐ๋ณ์๋ฅผ ์ ๋ฐ์ดํธํ ์ ์์.
updateWork()๋ฅผ ํธ์ถํ๋ ๋์ WorkRequest๋ฅผ ์ง์ ์ทจ์ํด์ผ ํ๋ ๊ฒฝ์ฐ๊ฐ ์์.
๐ ๋๊ธฐ์ด์ ์ถ๊ฐํ ์์
์ ๊ทผ๋ณธ์ ํน์ฑ์ ๋ณ๊ฒฝํ๋ ค๋ ๊ฒฝ์ฐ ์ํํด์ผํ๋ ์์
.
โ ์ฃผ์: updateWork()๋ฅผ ์ฌ์ฉํ์ฌ WorkRequest์ Worker ์ ํ์ ๋ณ๊ฒฝํ ์ ์์. ์๋ฅผ ๋ค์ด OneTimeWorkRequest๋ฅผ ๋๊ธฐ์ด์ ์ถ๊ฐํ๊ณ ์ ๊ธฐ์ ์ผ๋ก ์คํํ๋ ค๋ฉด ์์ฒญ์ ์ทจ์ํ๊ณ ์ PeriodicWorkRequest๋ฅผ ์์ฝํด์ผํจ.
์:
์ฌ์ฉ์์ ์ฌ์ง์ ๋งค์ผ ๋ฐฑ์
ํ๋ ์ฌ์ง ์ฑ์ด ์์ ๋, ์ด๋ฅผ ์ํด PeriodicWorkRequest๋ฅผ ๋๊ธฐ์ด์ ์ถ๊ฐ.
WorkRequest์๋ ์ฅ์น๊ฐ ์ถฉ์ ์ค์ด๊ณ Wi-Fi์ ์ฐ๊ฒฐ๋์ด์ผ ํ๋ค๋ ์ ์ฝ์ด ์์.
์ฌ์ฉ์๋ ๊ธ์ ์ถฉ์ ๊ธฐ๋ฅผ ์ด์ฉํด ํ๋ฃจ์ 20๋ถ๋ง ๊ธฐ๊ธฐ๋ฅผ ์ถฉ์ . ์ด ๊ฒฝ์ฐ ์ฑ์ WorkRequest๋ฅผ ์
๋ฐ์ดํธํ์ฌ ์ถฉ์ ์ ํ์ ์ํํ์ฌ ๊ธฐ๊ธฐ๊ฐ ์์ ํ ์ถฉ์ ๋์ง ์์ ๊ฒฝ์ฐ์๋ ์ฌ์ง์ ๊ณ์ ์
๋ก๋ํ ์ ์์.
์ด ์ํฉ์์๋ updateWork() ๋ฉ์๋๋ฅผ ์ฌ์ฉํ์ฌ ์์
์์ฒญ์ ์ ์ฝ ์กฐ๊ฑด์ ์
๋ฐ์ดํธํ ์ ์์.
updateWork() ๋ฉ์๋๋ ์ WorkRequest๋ฅผ ์ทจ์ํ๊ณ ๋๊ธฐ์ด์ ์ถ๊ฐํ ํ์ ์์ด ๊ธฐ์กด WorkRequest๋ฅผ ์ ๋ฐ์ดํธํ๋ ๊ฐ๋จํ ๋ฐฉ๋ฒ์ ์ ๊ณต.
suspend fun updatePhotoUploadWork() {
// Get instance of WorkManager.
val workManager = WorkManager.getInstance(context)
// Retrieve the work request ID. In this example, the work being updated is unique
// work so we can retrieve the ID using the unique work name.
val photoUploadWorkInfoList = workManager.getWorkInfosForUniqueWork(
PHOTO_UPLOAD_WORK_NAME
).await()
val existingWorkRequestId = photoUploadWorkInfoList.firstOrNull()?.id ?: return
// Update the constraints of the WorkRequest to not require a charging device.
val newConstraints = Constraints.Builder()
// Add other constraints as required here.
.setRequiresCharging(false)
.build()
// Create new WorkRequest from existing Worker, new constraints, and the id of the old WorkRequest.
val updatedWorkRequest: WorkRequest =
OneTimeWorkRequestBuilder<MyWorker>()
.setConstraints(newConstraints)
.setId(existingWorkRequestId)
.build()
// Pass the new WorkRequest to updateWork().
workManager.updateWork(updatedWorkRequest)
}
ListenableFuture<UpdateResult>
๋ฅผ ๋ฐํํจ.WorkRequest๋ฅผ ์
๋ฐ์ดํธํ ๋๋ง๋ค generation์ด 1์ฉ ์ฆ๊ฐ. ์ด๋ฅผ ํตํด ํ์ฌ ํ์ ์ถ๊ฐ๋ WorkRequest๋ฅผ ์ ํํ๊ฒ ์ถ์ ํ ์ ์์.
generation๋ฅผ ์ฌ์ฉํ๋ฉด ์์
์์ฒญ์ ๊ด์ฐฐ, ์ถ์ , ํ
์คํธํ ๋ ๋ ์ธ๋ฐํ๊ฒ ์ ์ดํ ์ ์์.
WorkInfo
WorkManager.getWorkInfoById()๋ฅผ ํธ์ถํ์ฌ WorkRequest์ ํด๋นํ๋ WorkInfo ์ธ์คํด์ค๋ฅผ ๊ฒ์. WorkInfo๋ฅผ ๋ฐํํ๋ ์ฌ๋ฌ ๋ฉ์๋ ์ค ํ๋๋ฅผ ํธ์ถํ ์ ์์.
getGeneration
WorkInfo ์ธ์คํด์ค์์ getGeneration()์ ํธ์ถ. ๋ฐํ๋ Int๋ WorkRequest generation์ ํด๋น.
generation์ ํ๋๋ ์์ฑ์ ์๊ณ WorkInfo.getGeneration() ๋ฉ์๋๋ง ์์.
// Get instance of WorkManager.
val workManager = WorkManager.getInstance(context)
// Retrieve WorkInfo instance.
val workInfo = workManager.getWorkInfoById(oldWorkRequestId)
// Call getGeneration to retrieve the generation.
val generation = workInfo.getGeneration()
๐ ์ฐธ๊ณ : updateWork()๊ฐ ๋ฐํํ๋ UpdateResult์๋ WorkRequest ์์ฑ์ด ํฌํจ๋์ง ์์.
์ฃผ๊ธฐ์ ์์ ์ ๋ฐ์ดํธ์ ๊ถ์ฅ๋๋ ์๋ฃจ์ ์ ExistingPeriodicWorkPolicy.REPLACE ์ ์ฑ ์ ์ฌ์ฉํ์ฌ PeriodicWorkRequest๋ฅผ ๋๊ธฐ์ด์ ์ถ๊ฐํ๋ ๊ฒ(๋์ผํ ๊ณ ์ ID๋ฅผ ๊ฐ์ง ๋ณด๋ฅ ์ค์ธ PeriodicWorkRequest๊ฐ ์๋ ๊ฒฝ์ฐ ์ WorkRequest๋ ์ด๋ฅผ ์ทจ์ํ๊ณ ์ญ์ ํจ)์ด์์ผ๋
ExistingPeriodicWorkPolicy.UPDATE๋ฅผ ์ฌ์ฉํ๋ ์ํฌํ๋ก๋ฅผ ์ํด ๋ ์ด์ ์ฌ์ฉ๋์ง ์์.
PeriodicWorkRequest์ ํจ๊ป enqueueUniquePeriodicWork๋ฅผ ์ฌ์ฉํ๋ ๊ฒฝ์ฐ ExistingPeriodicWorkPolicy.UPDATE ์ ์ฑ ์ ์ฌ์ฉํ์ฌ ์ PeriodicWorkRequest๋ฅผ ์ด๊ธฐํํ ์ ์์.
๋์ผํ unique name์ ๊ฐ์ง ๋ณด๋ฅ ์ค์ธ PeriodicWorkRequest๊ฐ ์๋ ๊ฒฝ์ฐ WorkManager๋ ์ด๋ฅผ ์ ์ฌ์์ผ๋ก ์ ๋ฐ์ดํธํจ.
์ด ์ํฌํ๋ก๋ฅผ ๋ฐ๋ฅด๋ฉด updateWork()๋ฅผ ์ฌ์ฉํ ํ์๊ฐ ์์.