
org.infinispan.client.hotrod.telemetry.impl.NoOpTelemetryService Maven / Gradle / Ivy
package org.infinispan.client.hotrod.telemetry.impl;
import java.util.function.Function;
import org.infinispan.client.hotrod.impl.InternalRemoteCache;
import org.infinispan.client.hotrod.impl.operations.CacheOperationsFactory;
public class NoOpTelemetryService implements TelemetryService {
public static final NoOpTelemetryService INSTANCE = new NoOpTelemetryService();
private NoOpTelemetryService() {
}
@Override
public Function, CacheOperationsFactory> wrapWithTelemetry(
Function, CacheOperationsFactory> function) {
return function;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy