Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate code for accessing marked subclasses in a feature module #10

Open
AlecKazakova opened this issue Oct 21, 2022 · 0 comments
Open
Labels
enhancement New feature or request

Comments

@AlecKazakova
Copy link
Collaborator

I'm imagining something where we have an interface like

interface Applet {
  fun doSomeStuff()
  
  companion object : DynamicFeatureInterface
}

and then we generate some code so you can do

Applet.implementations().forEach { applet ->
  applet.doSomeStuff()
}

behind the scenes it does reflection, but the gradle plugin is able to find all the implementations at compile time and generate the reflection code so its typesafe

@AlecKazakova AlecKazakova added the enhancement New feature or request label Oct 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant