Annotation Type Isolated


  • @Retention(RUNTIME)
    @Target(TYPE)
    public @interface Isolated
    Tells jvm-dtest that a class should be isolated and loaded into the instance class loader. Jvm-dtest relies on classloader isolation to run multiple cassandra instances in the same JVM, this makes it so some classes do not get shared (outside a blesssed set of classes/packages). When the default behavior is not desirable, this annotation will tell jvm-dtest to isolate the class accross all class loaders. This is the oposite of Shared.