-
Notifications
You must be signed in to change notification settings - Fork 209
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
Add ElementType.TYPE to ActorType to enable it in Kotlin #797
Comments
Overall I am inclined. But what would be the difference? |
That would allow writing actor interfaces in kotlin. |
@LionTao Will you be able to contribute a PR for this change? |
@LionTao Could you provide some documentation link in the PR or in this issue which explains why |
According to Kotlin docs, it seems currently kotlin lacks some native java ElementType enum values. For my project, rewriting the ActorType annotation class with |
Describe the proposal
Hi, I want to use the actor model with Kotlin. Currently, the
ActorType
annotation in java is targeted at ElementType.TYPE_USE which is incompatible with kotlin interface.Adding ElementType.TYPE to the annotation target field should work. Can we add it?
The text was updated successfully, but these errors were encountered: