java.lang.Object
org.apache.jena.dboe.transaction.txn.TxnIdFactory

public class TxnIdFactory extends Object
Factory for some forms of TxnId. This is ony some possible TxnIdGenerator
See Also:
  • Field Details

    • txnIdGenSimple

      public static final TxnIdGenerator txnIdGenSimple
      Generator for TxnIds for the counter based implementation.
    • txnIdGenUuid

      public static final TxnIdGenerator txnIdGenUuid
      Generator for TxnIds for the UUID based implementation.
  • Constructor Details

    • TxnIdFactory

      public TxnIdFactory()
  • Method Details

    • create

      public static TxnId create()
      Return the default, good enough for one JVM (usually the simple counter based implementation)
    • createSimple

      public static TxnId createSimple()
      Return a TxnId from the counter based implementation.
    • createUuid

      public static TxnId createUuid()
      Return a TxnId from the UUID based implementation.
    • create

      public static TxnId create(byte[] bytes)