Giter Site home page Giter Site logo

Comments (2)

arkivanov avatar arkivanov commented on May 27, 2024 1

Hello @ultraon and thanks for the idea!

First of all I would like to stress, that providing the CoroutineScope as a property was an explicit design decision. Making custom classes to implement CoroutineScope is discouraged, according to docs, various messages in Slack and some articles: Docs page, A slack thread, An article. The main reason is that it's error prone, you my accidentally launch a coroutine in incorrect scope.

Passing a scope via constructor - currently I find this also not a good API. CoroutineExecutor closes the scope on dispose. Currently CoroutineScope is encapsulated (owned and controlled by the CoroutineExecutor), and so its lifetime is guaranteed to be between CorutineExecutor instantiation and disposal. Passing CoroutineScope via constructor removes ownership from CoroutineExecutor.

If you still really won't to implement CoroutineScope, then maybe you can create your own base class?

open class BaseExcecutor(...) : CoroutineExecutor(...), CoroutineScope by scope {
...
}

from mvikotlin.

ultraon avatar ultraon commented on May 27, 2024

It’s a pretty good explanation, thank you.

from mvikotlin.

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.