Package org.apache.zookeeper.server
Class DataTree.ProcessTxnResult
- java.lang.Object
-
- org.apache.zookeeper.server.DataTree.ProcessTxnResult
-
-
Constructor Summary
Constructors Constructor Description ProcessTxnResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Equality is defined as the clientId and the cxid being the same.int
hashCode()
See equals() to find the rationale for how this hashcode is generated.
-
-
-
Field Detail
-
clientId
public long clientId
-
cxid
public int cxid
-
zxid
public long zxid
-
err
public int err
-
type
public int type
-
path
public String path
-
stat
public Stat stat
-
multiResult
public List<DataTree.ProcessTxnResult> multiResult
-
-
Method Detail
-
equals
public boolean equals(Object o)
Equality is defined as the clientId and the cxid being the same. This allows us to use hash tables to track completion of transactions.- Overrides:
equals
in classObject
- See Also:
Object.equals(java.lang.Object)
-
hashCode
public int hashCode()
See equals() to find the rationale for how this hashcode is generated.- Overrides:
hashCode
in classObject
- See Also:
equals(Object)
,Object.hashCode()
-
-