io.etcd.jetcd.api.TxnRequestOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: rpc.proto
// Protobuf Java Version: 3.25.1
package io.etcd.jetcd.api;
public interface TxnRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.TxnRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* compare is a list of predicates representing a conjunction of terms.
* If the comparisons succeed, then the success requests will be processed in order,
* and the response will contain their respective responses in order.
* If the comparisons fail, then the failure requests will be processed in order,
* and the response will contain their respective responses in order.
*
*
* repeated .etcdserverpb.Compare compare = 1;
*/
java.util.List
getCompareList();
/**
*
* compare is a list of predicates representing a conjunction of terms.
* If the comparisons succeed, then the success requests will be processed in order,
* and the response will contain their respective responses in order.
* If the comparisons fail, then the failure requests will be processed in order,
* and the response will contain their respective responses in order.
*
*
* repeated .etcdserverpb.Compare compare = 1;
*/
io.etcd.jetcd.api.Compare getCompare(int index);
/**
*
* compare is a list of predicates representing a conjunction of terms.
* If the comparisons succeed, then the success requests will be processed in order,
* and the response will contain their respective responses in order.
* If the comparisons fail, then the failure requests will be processed in order,
* and the response will contain their respective responses in order.
*
*
* repeated .etcdserverpb.Compare compare = 1;
*/
int getCompareCount();
/**
*
* compare is a list of predicates representing a conjunction of terms.
* If the comparisons succeed, then the success requests will be processed in order,
* and the response will contain their respective responses in order.
* If the comparisons fail, then the failure requests will be processed in order,
* and the response will contain their respective responses in order.
*
*
* repeated .etcdserverpb.Compare compare = 1;
*/
java.util.List extends io.etcd.jetcd.api.CompareOrBuilder>
getCompareOrBuilderList();
/**
*
* compare is a list of predicates representing a conjunction of terms.
* If the comparisons succeed, then the success requests will be processed in order,
* and the response will contain their respective responses in order.
* If the comparisons fail, then the failure requests will be processed in order,
* and the response will contain their respective responses in order.
*
*
* repeated .etcdserverpb.Compare compare = 1;
*/
io.etcd.jetcd.api.CompareOrBuilder getCompareOrBuilder(
int index);
/**
*
* success is a list of requests which will be applied when compare evaluates to true.
*
*
* repeated .etcdserverpb.RequestOp success = 2;
*/
java.util.List
getSuccessList();
/**
*
* success is a list of requests which will be applied when compare evaluates to true.
*
*
* repeated .etcdserverpb.RequestOp success = 2;
*/
io.etcd.jetcd.api.RequestOp getSuccess(int index);
/**
*
* success is a list of requests which will be applied when compare evaluates to true.
*
*
* repeated .etcdserverpb.RequestOp success = 2;
*/
int getSuccessCount();
/**
*
* success is a list of requests which will be applied when compare evaluates to true.
*
*
* repeated .etcdserverpb.RequestOp success = 2;
*/
java.util.List extends io.etcd.jetcd.api.RequestOpOrBuilder>
getSuccessOrBuilderList();
/**
*
* success is a list of requests which will be applied when compare evaluates to true.
*
*
* repeated .etcdserverpb.RequestOp success = 2;
*/
io.etcd.jetcd.api.RequestOpOrBuilder getSuccessOrBuilder(
int index);
/**
*
* failure is a list of requests which will be applied when compare evaluates to false.
*
*
* repeated .etcdserverpb.RequestOp failure = 3;
*/
java.util.List
getFailureList();
/**
*
* failure is a list of requests which will be applied when compare evaluates to false.
*
*
* repeated .etcdserverpb.RequestOp failure = 3;
*/
io.etcd.jetcd.api.RequestOp getFailure(int index);
/**
*
* failure is a list of requests which will be applied when compare evaluates to false.
*
*
* repeated .etcdserverpb.RequestOp failure = 3;
*/
int getFailureCount();
/**
*
* failure is a list of requests which will be applied when compare evaluates to false.
*
*
* repeated .etcdserverpb.RequestOp failure = 3;
*/
java.util.List extends io.etcd.jetcd.api.RequestOpOrBuilder>
getFailureOrBuilderList();
/**
*
* failure is a list of requests which will be applied when compare evaluates to false.
*
*
* repeated .etcdserverpb.RequestOp failure = 3;
*/
io.etcd.jetcd.api.RequestOpOrBuilder getFailureOrBuilder(
int index);
}