io.quarkus.infinispan.client.runtime.graal.NettySubstitution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-infinispan-client Show documentation
Show all versions of quarkus-infinispan-client Show documentation
Connect to the Infinispan data grid for distributed caching
package io.quarkus.infinispan.client.runtime.graal;
import org.infinispan.client.hotrod.impl.transport.netty.NativeTransport;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
final class NettySubstitution {
}
@TargetClass(value = NativeTransport.class)
final class SubstituteNativeTransport {
@Substitute
private static boolean useNativeEpoll() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy