We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are classes is not marked with @DoNotInherent, then Java user may extends that classes. We should mark it with @DoNotInherent.
@DoNotInherent
And there are some classes should be annotated with @InternalApi.
@InternalApi
refs: apache/pekko-connectors#588
The text was updated successfully, but these errors were encountered:
Is @DoNotInherent necessary if the class is final, that is already implied?
Typically @ DoNotInherent is used for classes which can be extended but only for private cases
@ DoNotInherent
Sorry, something went wrong.
no, I mean we should mark on sealed trait and sealed abstract class
That makes perfect sense, :+1 from me
No branches or pull requests
There are classes is not marked with
@DoNotInherent
, then Java user may extends that classes. We should mark it with@DoNotInherent
.And there are some classes should be annotated with
@InternalApi
.refs: apache/pekko-connectors#588
The text was updated successfully, but these errors were encountered: