public static final class TxnRequest.Builder extends com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder> implements TxnRequestOrBuilder
From google paxosdb paper: Our implementation hinges around a powerful primitive which we call MultiOp. All other database operations except for iteration are implemented as a single call to MultiOp. A MultiOp is applied atomically and consists of three components: 1. A list of tests called guard. Each test in guard checks a single entry in the database. It may check for the absence or presence of a value, or compare with a given value. Two different tests in the guard may apply to the same or different entries in the database. All tests in the guard are applied and MultiOp returns the results. If all tests are true, MultiOp executes t op (see item 2 below), otherwise it executes f op (see item 3 below). 2. A list of database operations called t op. Each operation in the list is either an insert, delete, or lookup operation, and applies to a single database entry. Two different operations in the list may apply to the same or different entries in the database. These operations are executed if guard evaluates to true. 3. A list of database operations called f op. Like t op, but executed if guard evaluates to false.Protobuf type
etcdserverpb.TxnRequest| Modifier and Type | Method and Description |
|---|---|
TxnRequest.Builder |
addAllCompare(Iterable<? extends Compare> values)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
addAllFailure(Iterable<? extends RequestOp> values)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
addAllSuccess(Iterable<? extends RequestOp> values)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
addCompare(Compare.Builder builderForValue)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
addCompare(Compare value)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
addCompare(int index,
Compare.Builder builderForValue)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
addCompare(int index,
Compare value)
compare is a list of predicates representing a conjunction of terms.
|
Compare.Builder |
addCompareBuilder()
compare is a list of predicates representing a conjunction of terms.
|
Compare.Builder |
addCompareBuilder(int index)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
addFailure(int index,
RequestOp.Builder builderForValue)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
addFailure(int index,
RequestOp value)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
addFailure(RequestOp.Builder builderForValue)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
addFailure(RequestOp value)
failure is a list of requests which will be applied when compare evaluates to false.
|
RequestOp.Builder |
addFailureBuilder()
failure is a list of requests which will be applied when compare evaluates to false.
|
RequestOp.Builder |
addFailureBuilder(int index)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) |
TxnRequest.Builder |
addSuccess(int index,
RequestOp.Builder builderForValue)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
addSuccess(int index,
RequestOp value)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
addSuccess(RequestOp.Builder builderForValue)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
addSuccess(RequestOp value)
success is a list of requests which will be applied when compare evaluates to true.
|
RequestOp.Builder |
addSuccessBuilder()
success is a list of requests which will be applied when compare evaluates to true.
|
RequestOp.Builder |
addSuccessBuilder(int index)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest |
build() |
TxnRequest |
buildPartial() |
TxnRequest.Builder |
clear() |
TxnRequest.Builder |
clearCompare()
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
clearFailure()
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
clearField(com.google.protobuf.Descriptors.FieldDescriptor field) |
TxnRequest.Builder |
clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) |
TxnRequest.Builder |
clearSuccess()
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
clone() |
Compare |
getCompare(int index)
compare is a list of predicates representing a conjunction of terms.
|
Compare.Builder |
getCompareBuilder(int index)
compare is a list of predicates representing a conjunction of terms.
|
List<Compare.Builder> |
getCompareBuilderList()
compare is a list of predicates representing a conjunction of terms.
|
int |
getCompareCount()
compare is a list of predicates representing a conjunction of terms.
|
List<Compare> |
getCompareList()
compare is a list of predicates representing a conjunction of terms.
|
CompareOrBuilder |
getCompareOrBuilder(int index)
compare is a list of predicates representing a conjunction of terms.
|
List<? extends CompareOrBuilder> |
getCompareOrBuilderList()
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest |
getDefaultInstanceForType() |
static com.google.protobuf.Descriptors.Descriptor |
getDescriptor() |
com.google.protobuf.Descriptors.Descriptor |
getDescriptorForType() |
RequestOp |
getFailure(int index)
failure is a list of requests which will be applied when compare evaluates to false.
|
RequestOp.Builder |
getFailureBuilder(int index)
failure is a list of requests which will be applied when compare evaluates to false.
|
List<RequestOp.Builder> |
getFailureBuilderList()
failure is a list of requests which will be applied when compare evaluates to false.
|
int |
getFailureCount()
failure is a list of requests which will be applied when compare evaluates to false.
|
List<RequestOp> |
getFailureList()
failure is a list of requests which will be applied when compare evaluates to false.
|
RequestOpOrBuilder |
getFailureOrBuilder(int index)
failure is a list of requests which will be applied when compare evaluates to false.
|
List<? extends RequestOpOrBuilder> |
getFailureOrBuilderList()
failure is a list of requests which will be applied when compare evaluates to false.
|
RequestOp |
getSuccess(int index)
success is a list of requests which will be applied when compare evaluates to true.
|
RequestOp.Builder |
getSuccessBuilder(int index)
success is a list of requests which will be applied when compare evaluates to true.
|
List<RequestOp.Builder> |
getSuccessBuilderList()
success is a list of requests which will be applied when compare evaluates to true.
|
int |
getSuccessCount()
success is a list of requests which will be applied when compare evaluates to true.
|
List<RequestOp> |
getSuccessList()
success is a list of requests which will be applied when compare evaluates to true.
|
RequestOpOrBuilder |
getSuccessOrBuilder(int index)
success is a list of requests which will be applied when compare evaluates to true.
|
List<? extends RequestOpOrBuilder> |
getSuccessOrBuilderList()
success is a list of requests which will be applied when compare evaluates to true.
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable |
internalGetFieldAccessorTable() |
boolean |
isInitialized() |
TxnRequest.Builder |
mergeFrom(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
TxnRequest.Builder |
mergeFrom(com.google.protobuf.Message other) |
TxnRequest.Builder |
mergeFrom(TxnRequest other) |
TxnRequest.Builder |
mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields) |
TxnRequest.Builder |
removeCompare(int index)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
removeFailure(int index)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
removeSuccess(int index)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
setCompare(int index,
Compare.Builder builderForValue)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
setCompare(int index,
Compare value)
compare is a list of predicates representing a conjunction of terms.
|
TxnRequest.Builder |
setFailure(int index,
RequestOp.Builder builderForValue)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
setFailure(int index,
RequestOp value)
failure is a list of requests which will be applied when compare evaluates to false.
|
TxnRequest.Builder |
setField(com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) |
TxnRequest.Builder |
setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
Object value) |
TxnRequest.Builder |
setSuccess(int index,
RequestOp.Builder builderForValue)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
setSuccess(int index,
RequestOp value)
success is a list of requests which will be applied when compare evaluates to true.
|
TxnRequest.Builder |
setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields) |
getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, newBuilderForField, onBuilt, onChanged, setUnknownFieldsProto3findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toStringaddAll, addAll, mergeFrom, newUninitializedMessageExceptionequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitpublic static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder clear()
clear in interface com.google.protobuf.Message.Builderclear in interface com.google.protobuf.MessageLite.Builderclear in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.Message.BuildergetDescriptorForType in interface com.google.protobuf.MessageOrBuildergetDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest getDefaultInstanceForType()
getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuildergetDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilderpublic TxnRequest build()
build in interface com.google.protobuf.Message.Builderbuild in interface com.google.protobuf.MessageLite.Builderpublic TxnRequest buildPartial()
buildPartial in interface com.google.protobuf.Message.BuilderbuildPartial in interface com.google.protobuf.MessageLite.Builderpublic TxnRequest.Builder clone()
clone in interface com.google.protobuf.Message.Builderclone in interface com.google.protobuf.MessageLite.Builderclone in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
setField in interface com.google.protobuf.Message.BuildersetField in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
clearField in interface com.google.protobuf.Message.BuilderclearField in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
clearOneof in interface com.google.protobuf.Message.BuilderclearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value)
setRepeatedField in interface com.google.protobuf.Message.BuildersetRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
addRepeatedField in interface com.google.protobuf.Message.BuilderaddRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder mergeFrom(com.google.protobuf.Message other)
mergeFrom in interface com.google.protobuf.Message.BuildermergeFrom in class com.google.protobuf.AbstractMessage.Builder<TxnRequest.Builder>public TxnRequest.Builder mergeFrom(TxnRequest other)
public final boolean isInitialized()
isInitialized in interface com.google.protobuf.MessageLiteOrBuilderisInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public TxnRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
mergeFrom in interface com.google.protobuf.Message.BuildermergeFrom in interface com.google.protobuf.MessageLite.BuildermergeFrom in class com.google.protobuf.AbstractMessage.Builder<TxnRequest.Builder>IOExceptionpublic 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;getCompareList in interface TxnRequestOrBuilderpublic 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;getCompareCount in interface TxnRequestOrBuilderpublic 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;getCompare in interface TxnRequestOrBuilderpublic TxnRequest.Builder setCompare(int index, Compare value)
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;public TxnRequest.Builder setCompare(int index, Compare.Builder builderForValue)
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;public TxnRequest.Builder addCompare(Compare value)
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;public TxnRequest.Builder addCompare(int index, Compare value)
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;public TxnRequest.Builder addCompare(Compare.Builder builderForValue)
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;public TxnRequest.Builder addCompare(int index, Compare.Builder builderForValue)
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;public TxnRequest.Builder addAllCompare(Iterable<? extends Compare> values)
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;public TxnRequest.Builder clearCompare()
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;public TxnRequest.Builder removeCompare(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;public Compare.Builder getCompareBuilder(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;public 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;getCompareOrBuilder in interface TxnRequestOrBuilderpublic 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;getCompareOrBuilderList in interface TxnRequestOrBuilderpublic Compare.Builder addCompareBuilder()
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;public Compare.Builder addCompareBuilder(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;public List<Compare.Builder> getCompareBuilderList()
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;public List<RequestOp> getSuccessList()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;getSuccessList in interface TxnRequestOrBuilderpublic int getSuccessCount()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;getSuccessCount in interface TxnRequestOrBuilderpublic RequestOp getSuccess(int index)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;getSuccess in interface TxnRequestOrBuilderpublic TxnRequest.Builder setSuccess(int index, RequestOp value)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder setSuccess(int index, RequestOp.Builder builderForValue)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder addSuccess(RequestOp value)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder addSuccess(int index, RequestOp value)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder addSuccess(RequestOp.Builder builderForValue)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder addSuccess(int index, RequestOp.Builder builderForValue)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder addAllSuccess(Iterable<? extends RequestOp> values)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder clearSuccess()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public TxnRequest.Builder removeSuccess(int index)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public RequestOp.Builder getSuccessBuilder(int index)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public RequestOpOrBuilder getSuccessOrBuilder(int index)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;getSuccessOrBuilder in interface TxnRequestOrBuilderpublic List<? extends RequestOpOrBuilder> getSuccessOrBuilderList()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;getSuccessOrBuilderList in interface TxnRequestOrBuilderpublic RequestOp.Builder addSuccessBuilder()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public RequestOp.Builder addSuccessBuilder(int index)
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public List<RequestOp.Builder> getSuccessBuilderList()
success is a list of requests which will be applied when compare evaluates to true.
repeated .etcdserverpb.RequestOp success = 2;public List<RequestOp> getFailureList()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;getFailureList in interface TxnRequestOrBuilderpublic int getFailureCount()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;getFailureCount in interface TxnRequestOrBuilderpublic RequestOp getFailure(int index)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;getFailure in interface TxnRequestOrBuilderpublic TxnRequest.Builder setFailure(int index, RequestOp value)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder setFailure(int index, RequestOp.Builder builderForValue)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder addFailure(RequestOp value)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder addFailure(int index, RequestOp value)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder addFailure(RequestOp.Builder builderForValue)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder addFailure(int index, RequestOp.Builder builderForValue)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder addAllFailure(Iterable<? extends RequestOp> values)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder clearFailure()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public TxnRequest.Builder removeFailure(int index)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public RequestOp.Builder getFailureBuilder(int index)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public RequestOpOrBuilder getFailureOrBuilder(int index)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;getFailureOrBuilder in interface TxnRequestOrBuilderpublic List<? extends RequestOpOrBuilder> getFailureOrBuilderList()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;getFailureOrBuilderList in interface TxnRequestOrBuilderpublic RequestOp.Builder addFailureBuilder()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public RequestOp.Builder addFailureBuilder(int index)
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public List<RequestOp.Builder> getFailureBuilderList()
failure is a list of requests which will be applied when compare evaluates to false.
repeated .etcdserverpb.RequestOp failure = 3;public final TxnRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
setUnknownFields in interface com.google.protobuf.Message.BuildersetUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>public final TxnRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
mergeUnknownFields in interface com.google.protobuf.Message.BuildermergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<TxnRequest.Builder>Copyright © 2020. All rights reserved.