org.infinispan.client.hotrod.impl.operations.StatsAffectingHotRodOperation Maven / Gradle / Ivy
package org.infinispan.client.hotrod.impl.operations;
import java.util.concurrent.atomic.AtomicReference;
import org.infinispan.client.hotrod.DataFormat;
import org.infinispan.client.hotrod.configuration.Configuration;
import org.infinispan.client.hotrod.impl.ClientStatistics;
import org.infinispan.client.hotrod.impl.ClientTopology;
import org.infinispan.client.hotrod.impl.protocol.Codec;
import org.infinispan.client.hotrod.impl.transport.netty.ChannelFactory;
import io.netty.channel.Channel;
/**
* @since 9.4
* @author Tristan Tarrant
*/
public abstract class StatsAffectingHotRodOperation extends HotRodOperation {
protected ClientStatistics clientStatistics;
private long startTime;
protected StatsAffectingHotRodOperation(short requestCode, short responseCode, Codec codec, int flags, Configuration cfg,
byte[] cacheName, AtomicReference clientTopology, ChannelFactory channelFactory,
DataFormat dataFormat, ClientStatistics clientStatistics) {
super(requestCode, responseCode, codec, flags, cfg, cacheName, clientTopology, channelFactory, dataFormat);
this.clientStatistics = clientStatistics;
}
@Override
protected void scheduleRead(Channel channel) {
if (clientStatistics.isEnabled()) {
startTime = clientStatistics.time();
}
super.scheduleRead(channel);
}
protected void statsDataRead(boolean success) {
if (clientStatistics.isEnabled()) {
clientStatistics.dataRead(success, startTime, 1);
}
}
protected void statsDataRead(boolean success, int count) {
if (clientStatistics.isEnabled() && count > 0) {
clientStatistics.dataRead(success, startTime, count);
}
}
protected void statsDataStore() {
if (clientStatistics.isEnabled()) {
clientStatistics.dataStore(startTime, 1);
}
}
protected void statsDataStore(int count) {
if (clientStatistics.isEnabled() && count > 0) {
clientStatistics.dataStore(startTime, count);
}
}
}