You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is something we could use to annotate such imported Java types as Sendable.
Others are:
Name
Description
GuardedBy
The field or method to which this annotation is applied can only be accessed when holding a particular lock, which may be a built-in (synchronization) lock, or may be an explicit Lock.
Immutable
The class to which this annotation is applied is immutable.
NotThreadSafe
The class to which this annotation is applied is not thread-safe.
ThreadSafe
The class to which this annotation is applied is thread-safe.
The text was updated successfully, but these errors were encountered:
While "dormant" some project do use the JSR-305 annotations, and one of them is https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/latest/javax/annotation/concurrent/ThreadSafe.html
This is something we could use to annotate such imported Java types as
Sendable
.Others are:
The text was updated successfully, but these errors were encountered: