Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- override fun onCreate() {
- super.onCreate()
- val wmConfig = Configuration
- .Builder()
- .setMaxSchedulerLimit(95)
- .build()
- WorkManager.initialize(ctx, wmConfig)
- val wm = WorkManager.getInstance()!!
- repeat(86) {
- val a1 = job("$it-a1")
- val b1 = job("$it-b1")
- val b2 = job("$it-b2")
- val c1 = job("$it-c1")
- wm.beginWith(a1).then(b1).enqueue()
- wm.beginWith(a1).then(b2).enqueue()
- wm.beginWith(b1, b2).then(c1).enqueue()
- }
- }
- private fun job(print: String) = OneTimeWorkRequest
- .Builder(TestWorker::class.java)
- .setInputData(Data.Builder().putAll(mapOf(TestWorker.print to print)).build())
- .build()
- class TestWorker : Worker() {
- companion object {
- const val print = "pritn"
- }
- override fun doWork(): Result {
- Thread.sleep(500L + Random().nextInt(250))
- Timber.tag("TESTING").d("----------------${inputData.getString(print, "")}-----------------")
- return Result.SUCCESS
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement