Class TxnIdFactory
java.lang.Object
org.apache.jena.dboe.transaction.txn.TxnIdFactory
Factory for some forms of
TxnId.
This is ony some possible TxnIdGenerator- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TxnIdGeneratorGenerator forTxnIds for the counter based implementation.static final TxnIdGeneratorGenerator forTxnIds for the UUID based implementation. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic TxnIdcreate()Return the default, good enough for one JVM (usually the simple counter based implementation)static TxnIdcreate(byte[] bytes) static TxnIdReturn a TxnId from the counter based implementation.static TxnIdReturn a TxnId from the UUID based implementation.
-
Field Details
-
Constructor Details
-
TxnIdFactory
public TxnIdFactory()
-
-
Method Details
-
create
Return the default, good enough for one JVM (usually the simple counter based implementation) -
createSimple
Return a TxnId from the counter based implementation. -
createUuid
Return a TxnId from the UUID based implementation. -
create
-