Uses of Class
org.apache.zookeeper.Op
-
Packages that use Op Package Description org.apache.zookeeper -
-
Uses of Op in org.apache.zookeeper
Subclasses of Op in org.apache.zookeeper Modifier and Type Class Description static classOp.Checkstatic classOp.Createstatic classOp.Deletestatic classOp.SetDataMethods in org.apache.zookeeper that return Op Modifier and Type Method Description static OpOp. check(java.lang.String path, int version)Constructs an version check operation.static OpOp. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, int flags)Constructs a create operation.static OpOp. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, CreateMode createMode)Constructs a create operation.static OpOp. delete(java.lang.String path, int version)Constructs a delete operation.static OpOp. setData(java.lang.String path, byte[] data, int version)Constructs an update operation.Methods in org.apache.zookeeper that return types with arguments of type Op Modifier and Type Method Description java.util.Iterator<Op>MultiTransactionRecord. iterator()Methods in org.apache.zookeeper with parameters of type Op Modifier and Type Method Description voidMultiTransactionRecord. add(Op op)Method parameters in org.apache.zookeeper with type arguments of type Op Modifier and Type Method Description java.util.List<OpResult>ZooKeeper. multi(java.lang.Iterable<Op> ops)Executes multiple ZooKeeper operations or none of them.voidZooKeeper. multi(java.lang.Iterable<Op> ops, AsyncCallback.MultiCallback cb, java.lang.Object ctx)The asynchronous version of multi.Constructor parameters in org.apache.zookeeper with type arguments of type Op Constructor Description MultiTransactionRecord(java.lang.Iterable<Op> ops)
-