org.infinispan.client.hotrod.impl.operations.ReplaceOperation Maven / Gradle / Ivy
package org.infinispan.client.hotrod.impl.operations;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import org.infinispan.client.hotrod.configuration.Configuration;
import org.infinispan.client.hotrod.impl.protocol.Codec;
import org.infinispan.client.hotrod.impl.transport.Transport;
import org.infinispan.client.hotrod.impl.transport.TransportFactory;
import net.jcip.annotations.Immutable;
/**
* Implements "Replace" operation as defined by Hot Rod
* protocol specification.
*
* @author [email protected]
* @since 4.1
*/
@Immutable
public class ReplaceOperation extends AbstractKeyValueOperation {
public ReplaceOperation(Codec codec, TransportFactory transportFactory,
Object key, byte[] keyBytes, byte[] cacheName, AtomicInteger topologyId,
int flags, Configuration cfg, byte[] value,
long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit) {
super(codec, transportFactory, key, keyBytes, cacheName, topologyId, flags, cfg, value,
lifespan, lifespanTimeUnit, maxIdle, maxIdleTimeUnit);
}
@Override
protected V executeOperation(Transport transport) {
short status = sendPutOperation(transport, REPLACE_REQUEST, REPLACE_RESPONSE);
return returnPossiblePrevValue(transport, status);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy