Package com.complexible.stardog
Interface TxInfo
-
public interface TxInfo
A simple structure that shows information about a transaction.- Author:
- Evren Sirin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDB()
Returns the name of the database this transaction is running on.java.util.UUID
getID()
Returns the globally unique ID for the transaction.long
getStartTime()
Returns thesystem time
when the transaction started.java.lang.String
getUser()
Returns the name of the user who is executing this transaction.
-
-
-
Method Detail
-
getID
java.util.UUID getID()
Returns the globally unique ID for the transaction.
-
getDB
java.lang.String getDB()
Returns the name of the database this transaction is running on.
-
getUser
java.lang.String getUser()
Returns the name of the user who is executing this transaction.
-
getStartTime
long getStartTime()
Returns thesystem time
when the transaction started. The system time is reported by the server and may not be in sync with the client that receives this information.
-
-