Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.02 KB | None | 0 0
  1. override fun onCreate() {
  2.     super.onCreate()
  3.  
  4.     val wmConfig = Configuration
  5.       .Builder()
  6.       .setMaxSchedulerLimit(95)
  7.       .build()
  8.     WorkManager.initialize(ctx, wmConfig)
  9.  
  10.     val wm = WorkManager.getInstance()!!
  11.     repeat(86) {
  12.       val a1 = job("$it-a1")
  13.       val b1 = job("$it-b1")
  14.       val b2 = job("$it-b2")
  15.       val c1 = job("$it-c1")
  16.       wm.beginWith(a1).then(b1).enqueue()
  17.       wm.beginWith(a1).then(b2).enqueue()
  18.       wm.beginWith(b1, b2).then(c1).enqueue()
  19.     }
  20.   }
  21.  
  22.   private fun job(print: String) = OneTimeWorkRequest
  23.     .Builder(TestWorker::class.java)
  24.     .setInputData(Data.Builder().putAll(mapOf(TestWorker.print to print)).build())
  25.     .build()
  26.  
  27.   class TestWorker : Worker() {
  28.     companion object {
  29.  
  30.       const val print = "pritn"
  31.     }
  32.  
  33.     override fun doWork(): Result {
  34.       Thread.sleep(500L + Random().nextInt(250))
  35.       Timber.tag("TESTING").d("----------------${inputData.getString(print, "")}-----------------")
  36.       return Result.SUCCESS
  37.     }
  38.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement