Package io.debezium.annotation


package io.debezium.annotation
  • Annotation Types
    Class
    Description
     
     
    Denotes that the annotated type isn't safe for concurrent access from multiple threads without external synchronization.
    Indicates that the annotated element intentionally uses default visibility.
    Annotation that can be used to specify that the target field, method, constructor, package or type is read-only.
    Denotes that the annotated element of a class that's meant for multi-threaded usage is accessed only by single thread and thus doesn't need to be guarded via synchronization or similar.
    Denotes that the annotated type is safe for concurrent access from multiple threads.
    Indicates that visibility of the annotated element is raised for the purposes of testing (e.g.