![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.tx.TransactionCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-resp Show documentation
Show all versions of infinispan-server-resp Show documentation
Infinispan Resp Protocol Server
package org.infinispan.server.resp.tx;
import java.util.List;
import java.util.concurrent.CompletionStage;
import org.infinispan.server.resp.Resp3Handler;
import org.infinispan.server.resp.RespCommand;
import org.infinispan.server.resp.RespRequestHandler;
import io.netty.channel.ChannelHandlerContext;
public class TransactionCommand {
private final RespCommand command;
private final List arguments;
TransactionCommand(RespCommand command, List arguments) {
this.command = command;
this.arguments = arguments;
}
public CompletionStage perform(Resp3Handler handler, ChannelHandlerContext ctx) {
return handler.handleRequest(ctx, command, arguments);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy