Giter Club home page Giter Club logo

Comments (5)

elizarov avatar elizarov commented on May 18, 2024 3

Libraries that provide a single callback are easy to wrap for use with coroutines. It is explained here: https://github.com/Kotlin/kotlin-coroutines/blob/master/kotlin-coroutines-informal.md#wrapping-callbacks

from kotlinx.coroutines.

elizarov avatar elizarov commented on May 18, 2024 2

There is no reason to use thread with coroutines. Please, read the guide. It has a lot of working read-to-use examples that you can try: https://github.com/Kotlin/kotlinx.coroutines/blob/master/coroutines-guide.md

from kotlinx.coroutines.

fvasco avatar fvasco commented on May 18, 2024
thread(start = true) {  
    channel.send(1) <--- HERE?

you should wrap it in another runBlocking

You should look at async: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.experimental/async.html

from kotlinx.coroutines.

molixiaoge avatar molixiaoge commented on May 18, 2024

But there are many Third party librarys,which use call back mode in their thread.With thread safe Wait result obj,the code will wrap easy!

from kotlinx.coroutines.

sr01 avatar sr01 commented on May 18, 2024

I use something similar with RxJava, for tests:

suspend inline fun <T> Observable<T>.suspend(): T = suspendCoroutine { cont -> this.take(1).subscribe({ cont.resume(it) }, { cont.resumeWithException(it) }) }

from kotlinx.coroutines.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.