Class ZooStore<T>

    • Method Detail

      • create

        public long create()
        Description copied from interface: TStore
        Create a new transaction id
        Specified by:
        create in interface TStore<T>
        Returns:
        a transaction id
      • reserve

        public long reserve()
        Description copied from interface: ReadOnlyTStore
        Reserve a transaction that is IN_PROGRESS or FAILED_IN_PROGRESS. Reserving a transaction id ensures that nothing else in-process interacting via the same instance will be operating on that transaction id.
        Specified by:
        reserve in interface ReadOnlyTStore<T>
        Returns:
        a transaction id that is safe to interact with, chosen by the store.
      • reserve

        public void reserve​(long tid)
        Description copied from interface: ReadOnlyTStore
        Reserve the specific tid. Reserving a transaction id ensures that nothing else in-process interacting via the same instance will be operating on that transaction id.
        Specified by:
        reserve in interface ReadOnlyTStore<T>
      • unreserve

        public void unreserve​(long tid,
                              long deferTime)
        Description copied from interface: ReadOnlyTStore
        Return the given transaction to the store. upon successful return the store now controls the referenced transaction id. caller should no longer interact with it.
        Specified by:
        unreserve in interface ReadOnlyTStore<T>
        Parameters:
        tid - transaction id, previously reserved.
        deferTime - time in millis to keep this transaction out of the pool used in the reserve method. must be non-negative.
      • top

        public Repo<T> top​(long tid)
        Description copied from interface: ReadOnlyTStore
        Get the current operation for the given transaction id. Caller must have already reserved tid.
        Specified by:
        top in interface ReadOnlyTStore<T>
        Specified by:
        top in interface TStore<T>
        Parameters:
        tid - transaction id, previously reserved.
        Returns:
        a read-only view of the operation
      • pop

        public void pop​(long tid)
        Description copied from interface: TStore
        Remove the last pushed operation from the given transaction.
        Specified by:
        pop in interface TStore<T>
      • getStatus

        public ReadOnlyTStore.TStatus getStatus​(long tid)
        Description copied from interface: ReadOnlyTStore
        Get the state of a given transaction. Caller must have already reserved tid.
        Specified by:
        getStatus in interface ReadOnlyTStore<T>
        Parameters:
        tid - transaction id, previously reserved.
        Returns:
        execution status
      • setStatus

        public void setStatus​(long tid,
                              ReadOnlyTStore.TStatus status)
        Description copied from interface: TStore
        Update the state of a given transaction
        Specified by:
        setStatus in interface TStore<T>
        Parameters:
        tid - transaction id
        status - execution status
      • delete

        public void delete​(long tid)
        Description copied from interface: TStore
        Remove the transaction from the store.
        Specified by:
        delete in interface TStore<T>
        Parameters:
        tid - the transaction id
      • getProperty

        public Serializable getProperty​(long tid,
                                        String prop)
        Description copied from interface: ReadOnlyTStore
        Retrieve a transaction-specific property. Caller must have already reserved tid.
        Specified by:
        getProperty in interface ReadOnlyTStore<T>
        Parameters:
        tid - transaction id, previously reserved.
        prop - name of property to retrieve.
      • list

        public List<Long> list()
        Description copied from interface: ReadOnlyTStore
        list all transaction ids in store.
        Specified by:
        list in interface ReadOnlyTStore<T>
        Returns:
        all outstanding transactions, including those reserved by others.
      • getStack

        public List<ReadOnlyRepo<T>> getStack​(long tid)
        Description copied from interface: ReadOnlyTStore
        Get all operations on a transactions stack. Element 0 contains the most recent operation pushed or the top.
        Specified by:
        getStack in interface ReadOnlyTStore<T>