Git Product home page Git Product logo

Comments (2)

dkhalanskyjb avatar dkhalanskyjb commented on June 2, 2024

Yes, that's correct, once DefaultExecutor sees that it's supposed to run some code eventually, it will just go to sleep and won't wake up until either the time comes to run that code, or some new event arrives. KEEP_ALIVE_MS is not part of the public contract and isn't advertised anywhere, so it's just a part of our internal implementation, not something you can rely on.

If you have specific requirements for when DefaultExecutor should finish, please share them. Without specific use cases, we'd rather not wake DefaultExecutor up each time a task is removed from its queue: let it sleep in peace.

Also, if you are okay with relying on the internal implementation details, you can interrupt the DefaultExecutor so that it recognizes that it doesn't have any more work to do:

runBlocking { withTimeout(10.seconds) {} }
val time = measureTime {
    arrayOfNulls<Thread>(Thread.activeCount())
        .apply(Thread::enumerate)
        .find { it?.name == "kotlinx.coroutines.DefaultExecutor" }!!
        .apply {
            interrupt()
            join()
        }
}
println(time)

from kotlinx.coroutines.

chaoren avatar chaoren commented on June 2, 2024

This came up because 9a98eab changed timeout of runTest to 60 seconds, which caused the DefaultExecutor thread to far outlive the lifetime of each test case and it was caught by a leaked thread detector that some of our tests used. That thread should obviously have been exempt from the detector anyway so that wasn't a real problem, but I thought that maybe this behavior was unintentional after seeing that the thread was only supposed to live for one second.

we'd rather not wake DefaultExecutor up each time a task is removed from its queue: let it sleep in peace.

Fair enough. I'll just consider this an implementation quirk then. No real problems here.

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.