org.infinispan.commands.remote.recovery.GetInDoubtTxInfoCommand Maven / Gradle / Ivy
package org.infinispan.commands.remote.recovery;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.concurrent.CompletableFuture;
import org.infinispan.util.ByteString;
/**
* Command used by the recovery tooling for obtaining the list of in-doubt transactions from a node.
*
* @author Mircea Markus
* @since 5.0
*/
public class GetInDoubtTxInfoCommand extends RecoveryCommand {
public static final int COMMAND_ID = 23;
private GetInDoubtTxInfoCommand() {
super(null); // For command id uniqueness test
}
public GetInDoubtTxInfoCommand(ByteString cacheName) {
super(cacheName);
}
@Override
public CompletableFuture
© 2015 - 2025 Weber Informatics LLC | Privacy Policy