Package org.rocksdb
Class TransactionDB.DeadlockInfo
- java.lang.Object
-
- org.rocksdb.TransactionDB.DeadlockInfo
-
- Enclosing class:
- TransactionDB
public static class TransactionDB.DeadlockInfo extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetColumnFamilyId()Get the Column Family ID.longgetTransactionID()Get the Transaction ID.java.lang.StringgetWaitingKey()Get the key that we are waiting on.booleanisExclusive()Get the Lock status.
-
-
-
Method Detail
-
getTransactionID
public long getTransactionID()
Get the Transaction ID.- Returns:
- the transaction ID
-
getColumnFamilyId
public long getColumnFamilyId()
Get the Column Family ID.- Returns:
- The column family ID
-
getWaitingKey
public java.lang.String getWaitingKey()
Get the key that we are waiting on.- Returns:
- the key that we are waiting on
-
isExclusive
public boolean isExclusive()
Get the Lock status.- Returns:
- true if the lock is exclusive, false if the lock is shared.
-
-