All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.kafka.streams.runtime.graal.KafkaStreamsSubstitutions Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.kafka.streams.runtime.graal;

import com.oracle.svm.core.annotate.Alias;
import com.oracle.svm.core.annotate.RecomputeFieldValue;
import com.oracle.svm.core.annotate.TargetClass;

/**
 * Resets the {@code initialized} field, so that the native libs are loaded again at
 * image runtime, after they have been loaded once at build time via calls from static
 * initializers.
 */
@TargetClass(className = "org.rocksdb.NativeLibraryLoader")
final class Target_org_rocksdb_NativeLibraryLoader {

    @Alias
    @RecomputeFieldValue(kind = RecomputeFieldValue.Kind.Reset)
    private static boolean initialized = false;
}

public final class KafkaStreamsSubstitutions {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy