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

org.infinispan.client.hotrod.impl.operations.HotRodOperation Maven / Gradle / Ivy

There is a newer version: 15.1.1.Final
Show newest version
package org.infinispan.client.hotrod.impl.operations;

import java.util.Map;
import java.util.concurrent.CompletableFuture;

import org.infinispan.client.hotrod.DataFormat;
import org.infinispan.client.hotrod.impl.ClientStatistics;
import org.infinispan.client.hotrod.impl.protocol.Codec;
import org.infinispan.client.hotrod.impl.transport.netty.HeaderDecoder;

import io.netty.buffer.ByteBuf;
import io.netty.channel.Channel;

public interface HotRodOperation {
   void writeOperationRequest(Channel channel, ByteBuf buf, Codec codec);

   T createResponse(ByteBuf buf, short status, HeaderDecoder decoder, Codec codec, CacheUnmarshaller unmarshaller);

   short requestOpCode();

   short responseOpCode();

   int flags();

   byte[] getCacheNameBytes();

   String getCacheName();

   DataFormat getDataFormat();

   Object getRoutingObject();

   boolean supportRetry();

   Map additionalParameters();

   void handleStatsCompletion(ClientStatistics statistics, long startTime, short status, T responseValue);

   void reset();

   CompletableFuture asCompletableFuture();

   long timeout();

   boolean isInstanceOf(Class> klass);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy