org.infinispan.hotrod.impl.operations.StatsAffectingHotRodOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-hotrod-jakarta Show documentation
Show all versions of infinispan-hotrod-jakarta Show documentation
Infinispan Hot Rod Client Jakarta EE
package org.infinispan.hotrod.impl.operations;
import org.infinispan.api.common.CacheOptions;
import org.infinispan.hotrod.impl.DataFormat;
import io.netty.channel.Channel;
/**
* @since 14.0
*/
public abstract class StatsAffectingHotRodOperation extends HotRodOperation {
private long startTime;
protected StatsAffectingHotRodOperation(OperationContext operationContext, short requestCode, short responseCode, CacheOptions options,
DataFormat dataFormat) {
super(operationContext, requestCode, responseCode, options, dataFormat);
}
@Override
protected void scheduleRead(Channel channel) {
if (operationContext.getClientStatistics().isEnabled()) {
startTime = operationContext.getClientStatistics().time();
}
super.scheduleRead(channel);
}
protected void statsDataRead(boolean success) {
if (operationContext.getClientStatistics().isEnabled()) {
operationContext.getClientStatistics().dataRead(success, startTime, 1);
}
}
protected void statsDataRead(boolean success, int count) {
if (operationContext.getClientStatistics().isEnabled() && count > 0) {
operationContext.getClientStatistics().dataRead(success, startTime, count);
}
}
protected void statsDataStore() {
if (operationContext.getClientStatistics().isEnabled()) {
operationContext.getClientStatistics().dataStore(startTime, 1);
}
}
protected void statsDataStore(int count) {
if (operationContext.getClientStatistics().isEnabled() && count > 0) {
operationContext.getClientStatistics().dataStore(startTime, count);
}
}
}