![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.commands.connection.PING 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.commands.connection;
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 org.infinispan.server.resp.SubscriberHandler;
import org.infinispan.server.resp.commands.PubSubResp3Command;
import org.infinispan.server.resp.commands.Resp3Command;
import org.infinispan.server.resp.serialization.Resp3Response;
import io.netty.channel.ChannelHandlerContext;
/**
* @link https://redis.io/commands/ping/
* @since 14.0
*/
public class PING extends RespCommand implements Resp3Command, PubSubResp3Command {
public static final String NAME = "PING";
private static final byte[] PONG = { 'P', 'O', 'N', 'G'};
public PING() {
super(NAME, -1, 0, 0, 0);
}
@Override
public CompletionStage perform(Resp3Handler handler, ChannelHandlerContext ctx,
List arguments) {
if (arguments.isEmpty()) {
Resp3Response.string(PONG, handler.allocator());
return handler.myStage();
} else if (arguments.size()==1) {
Resp3Response.string(arguments.get(0), handler.allocator());
return handler.myStage();
}
return handler.delegate(ctx, this, arguments);
}
@Override
public CompletionStage perform(SubscriberHandler handler, ChannelHandlerContext ctx,
List arguments) {
handler.resp3Handler().handleRequest(ctx, this, arguments);
return handler.myStage();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy