org.infinispan.server.hotrod.command.Ids Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-hotrod-jakarta Show documentation
Show all versions of infinispan-server-hotrod-jakarta Show documentation
Infinispan Hot Rod Server Jakarta EE
The newest version!
package org.infinispan.server.hotrod.command;
import org.infinispan.commands.ReplicableCommand;
/**
* The ids of the {@link ReplicableCommand} used by this module.
*
* range: 140-141
*
* @author Pedro Ruivo
* @since 9.1
*/
public interface Ids {
byte FORWARD_COMMIT = (byte) (140 & 0xFF);
byte FORWARD_ROLLBACK = (byte) (141 & 0xFF);
}