org.apache.zookeeper
Class Transaction
java.lang.Object
org.apache.zookeeper.Transaction
public class Transaction
- extends Object
Provides a builder style interface for doing multiple updates. This is
really just a thin layer on top of Zookeeper.multi().
- Since:
- 3.4.0
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Transaction
protected Transaction(ZooKeeper zk)
create
public Transaction create(String path,
byte[] data,
List<ACL> acl,
CreateMode createMode)
delete
public Transaction delete(String path,
int version)
check
public Transaction check(String path,
int version)
setData
public Transaction setData(String path,
byte[] data,
int version)
commit
public List<OpResult> commit()
throws InterruptedException,
KeeperException
- Throws:
InterruptedException
KeeperException
Copyright © 2013 The Apache Software Foundation