org.infinispan.server.resp.commands.PubSubResp3Command 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
The newest version!
package org.infinispan.server.resp.commands;
import io.netty.channel.ChannelHandlerContext;
import org.infinispan.server.resp.RespRequestHandler;
import org.infinispan.server.resp.SubscriberHandler;
import java.util.List;
import java.util.concurrent.CompletionStage;
public interface PubSubResp3Command {
CompletionStage perform(SubscriberHandler handler, ChannelHandlerContext ctx, List arguments);
}