Package io.etcd.jetcd.api
Interface TxnRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TxnRequest,TxnRequest.Builder
public interface TxnRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComparegetCompare(int index)compare is a list of predicates representing a conjunction of terms.intgetCompareCount()compare is a list of predicates representing a conjunction of terms.java.util.List<Compare>getCompareList()compare is a list of predicates representing a conjunction of terms.CompareOrBuildergetCompareOrBuilder(int index)compare is a list of predicates representing a conjunction of terms.java.util.List<? extends CompareOrBuilder>getCompareOrBuilderList()compare is a list of predicates representing a conjunction of terms.RequestOpgetFailure(int index)failure is a list of requests which will be applied when compare evaluates to false.intgetFailureCount()failure is a list of requests which will be applied when compare evaluates to false.java.util.List<RequestOp>getFailureList()failure is a list of requests which will be applied when compare evaluates to false.RequestOpOrBuildergetFailureOrBuilder(int index)failure is a list of requests which will be applied when compare evaluates to false.java.util.List<? extends RequestOpOrBuilder>getFailureOrBuilderList()failure is a list of requests which will be applied when compare evaluates to false.RequestOpgetSuccess(int index)success is a list of requests which will be applied when compare evaluates to true.intgetSuccessCount()success is a list of requests which will be applied when compare evaluates to true.java.util.List<RequestOp>getSuccessList()success is a list of requests which will be applied when compare evaluates to true.RequestOpOrBuildergetSuccessOrBuilder(int index)success is a list of requests which will be applied when compare evaluates to true.java.util.List<? extends RequestOpOrBuilder>getSuccessOrBuilderList()success is a list of requests which will be applied when compare evaluates to true.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCompareList
java.util.List<Compare> 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;
-
getCompare
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;
-
getCompareCount
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;
-
getCompareOrBuilderList
java.util.List<? extends 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;
-
getCompareOrBuilder
CompareOrBuilder getCompareOrBuilder(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;
-
getSuccessList
java.util.List<RequestOp> getSuccessList()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;
-
getSuccess
RequestOp getSuccess(int index)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;
-
getSuccessCount
int getSuccessCount()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;
-
getSuccessOrBuilderList
java.util.List<? extends RequestOpOrBuilder> getSuccessOrBuilderList()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;
-
getSuccessOrBuilder
RequestOpOrBuilder getSuccessOrBuilder(int index)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;
-
getFailureList
java.util.List<RequestOp> getFailureList()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;
-
getFailure
RequestOp getFailure(int index)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;
-
getFailureCount
int getFailureCount()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;
-
getFailureOrBuilderList
java.util.List<? extends RequestOpOrBuilder> getFailureOrBuilderList()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;
-
getFailureOrBuilder
RequestOpOrBuilder getFailureOrBuilder(int index)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;
-
-