com.ibm.etcd.api.TxnRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etcd-java Show documentation
Show all versions of etcd-java Show documentation
etcd3 java client and utilities
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: rpc.proto
package com.ibm.etcd.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;
*/
com.ibm.etcd.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 com.ibm.etcd.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;
*/
com.ibm.etcd.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;
*/
com.ibm.etcd.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 com.ibm.etcd.api.RequestOpOrBuilder>
getSuccessOrBuilderList();
/**
*
* success is a list of requests which will be applied when compare evaluates to true.
*
*
* repeated .etcdserverpb.RequestOp success = 2;
*/
com.ibm.etcd.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;
*/
com.ibm.etcd.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 com.ibm.etcd.api.RequestOpOrBuilder>
getFailureOrBuilderList();
/**
*
* failure is a list of requests which will be applied when compare evaluates to false.
*
*
* repeated .etcdserverpb.RequestOp failure = 3;
*/
com.ibm.etcd.api.RequestOpOrBuilder getFailureOrBuilder(
int index);
}