web-dev-qa-db-fra.com

Référence non résolue: lancement

Essayer d'exécuter quelques exemples pour les coroutines Kotlin, mais ne peut pas construire mon projet. J'utilise la dernière version de Gradle - 4.1

Des suggestions à vérifier/corriger?

Voici build.gradle

buildscript {
    ext.kotlin_version = '1.1.4-3'

    repositories {
        mavenCentral()
    }

    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

apply plugin: 'kotlin'
apply plugin: 'application'

kotlin {
    repositories {
        jcenter()
    }

    experimental {
        coroutines 'enable'
    }

    dependencies {
        compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.18"
    }
}

et le main.kt

fun main(args: Array<String>) {
    launch (CommonPool) {
        delay(1000L)
        println("World!")
    }

    println("Hello, ")
    Thread.sleep(2000L)
}

quand je cours gradle compileKotlin Je reçois ce qui suit

e: /Users/philippgrigoryev/projects/kotlin-coroutines/src/main/kotlin/main.kt: (2, 5): Unresolved reference: launch
e: /Users/philippgrigoryev/projects/kotlin-coroutines/src/main/kotlin/main.kt: (2, 13): Unresolved reference: CommonPool
e: /Users/philippgrigoryev/projects/kotlin-coroutines/src/main/kotlin/main.kt: (3, 9): Unresolved reference: delay`
25
Philipp Grigoryev

Comme déjà répondu dans les commentaires, l'importation est manquante pour le kotlinx.coroutines.experimental.* paquet. Vous pouvez consulter mes exemples sur GitHub si vous le souhaitez.

import kotlinx.coroutines.experimental.*

fun main(args: Array<String>) {

    launch(CommonPool) {
        delay(1000)
        LOG.debug("Hello from coroutine")
    }

}
3
s1m0nw1

Le lancement n'est plus utilisé directement. La documentation Kotlin suggère d'utiliser:

fun main() { 
    GlobalScope.launch { // launch a new coroutine in background and continue
        delay(1000L)
        println("World!")
    }
    println("Hello,") // main thread continues here immediately
    runBlocking {     // but this expression blocks the main thread
        delay(2000L)  // ... while we delay for 2 seconds to keep JVM alive
    } 
}
25
Christian

Si vous utilisez Coroutines 1.0+, l'importation n'est plus

import kotlinx.coroutines.experimental. *

mais

importer kotlinx.coroutines.launch

Vous auriez besoin des éléments suivants dans la fermeture des dépendances de votre build.gradle (pour Coroutines 1.0.1):

implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-Android:1.0.1"
20
Tash Pemhiwa

Essayez de cette façon,

// ajoute ces lignes à gradle

 implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$rootProject.kotlinx_coroutines"
 implementation "org.jetbrains.kotlinx:kotlinx-coroutines-Android:$rootProject.kotlinx_coroutines"


  class xyz{
     private val job = Job()
        private val coroutinesScope: CoroutineScope = CoroutineScope(job + Dispatchers.IO)

      ....
     . ...
       coroutinesScope.launch {
                       // task to do
                        Timber.d("Delete Firebase Instance ID")
                    }


    // clear the job
      job.cancel()

    }
0
Sam