Répétez après 1 minute Kotlin dans le bloc de lancement

  private fun loop() {
    CoroutineScope(IO).launch {
        delay(5000)
        CoroutineScope(Main).launch {
            ManagerToWorker()
            loop()
        }
    }
}
Nice Nightingale