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 class
Op.Check
static class
Op.Create
static class
Op.Delete
static class
Op.SetData
Methods in org.apache.zookeeper that return Op Modifier and Type Method Description static Op
Op. check(java.lang.String path, int version)
Constructs an version check operation.static Op
Op. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, int flags)
Constructs a create operation.static Op
Op. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, CreateMode createMode)
Constructs a create operation.static Op
Op. delete(java.lang.String path, int version)
Constructs a delete operation.static Op
Op. 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 void
MultiTransactionRecord. 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.void
ZooKeeper. 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)
-