Interface TxnStack<E>

    • Method Detail

      • getCapacity

        int getCapacity()
      • push

        void push​(E item)
      • push

        void push​(Txn txn,
                  E item)
      • offer

        boolean offer​(E item)
      • offer

        boolean offer​(Txn txn,
                      E item)
      • pop

        E pop()
      • pop

        E pop​(Txn txn)
      • poll

        E poll()
      • poll

        E poll​(Txn txn)
      • peek

        E peek()
      • peek

        E peek​(Txn txn)