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

org.infinispan.counter.impl.weak.WeakCounterKey Maven / Gradle / Ivy

The newest version!
package org.infinispan.counter.impl.weak;

import java.util.Objects;

import org.infinispan.commons.marshall.ProtoStreamTypeIds;
import org.infinispan.counter.api.WeakCounter;
import org.infinispan.counter.impl.entries.CounterKey;
import org.infinispan.protostream.annotations.ProtoFactory;
import org.infinispan.protostream.annotations.ProtoField;
import org.infinispan.protostream.annotations.ProtoTypeId;
import org.infinispan.util.ByteString;

/**
 * The key to store in the {@link org.infinispan.Cache} used by {@link WeakCounter}.
 * 

* The weak consistent counters splits the counter's value in multiple keys. This class contains the index. * * @author Pedro Ruivo * @since 9.0 */ @ProtoTypeId(ProtoStreamTypeIds.WEAK_COUNTER_KEY) public class WeakCounterKey implements CounterKey { private final ByteString counterName; private final int index; @ProtoFactory WeakCounterKey(ByteString counterName, int index) { this.counterName = Objects.requireNonNull(counterName); this.index = requirePositive(index); } private static int requirePositive(int i) { if (i < 0) { throw new IllegalArgumentException("Requires positive index"); } return i; } @Override @ProtoField(1) public ByteString getCounterName() { return counterName; } @ProtoField(number = 2, defaultValue = "0") int getIndex() { return index; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } WeakCounterKey that = (WeakCounterKey) o; return index == that.index && counterName.equals(that.counterName); } @Override public int hashCode() { int result = counterName.hashCode(); result = 31 * result + index; return result; } @Override public String toString() { return "WeakCounterKey{" + "counterName=" + counterName + ", index=" + index + '}'; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy