Class CommitTracker

  • All Implemented Interfaces:
    Tracker

    public class CommitTracker
    extends AbstractTracker
    Author:
    Joel Bernstein
    • Field Detail

      • LOGGER

        protected static final org.slf4j.Logger LOGGER
    • Constructor Detail

      • CommitTracker

        public CommitTracker​(java.util.Properties p,
                             org.alfresco.solr.client.SOLRAPIClient client,
                             java.lang.String coreName,
                             InformationServer informationServer,
                             java.util.List<Tracker> trackers)
    • Method Detail

      • getWriteLock

        public java.util.concurrent.Semaphore getWriteLock()
        Description copied from class: AbstractTracker
        Trackers implementing this method should decide if the Write Lock is applied globally for every Tracker Thread (static) or locally for each running Thread
        Specified by:
        getWriteLock in interface Tracker
        Specified by:
        getWriteLock in class AbstractTracker
      • getRunLock

        public java.util.concurrent.Semaphore getRunLock()
        Description copied from class: AbstractTracker
        Trackers implementing this method should decide if the Run Lock is applied globally for every Tracker Thread (static) or locally for each running Thread
        Specified by:
        getRunLock in class AbstractTracker
      • hasMaintenance

        public boolean hasMaintenance()
      • getRollbackCount

        public int getRollbackCount()
      • maintenance

        public void maintenance()
                         throws java.lang.Exception
        Throws:
        java.lang.Exception
      • doTrack

        protected void doTrack​(java.lang.String iterationId)
                        throws java.lang.Throwable
        Description copied from class: AbstractTracker
        Subclasses must implement behaviour that completes the following steps, in order:
        1. Purge
        2. Reindex
        3. Index
        4. Track repository
        Specified by:
        doTrack in class AbstractTracker
        Parameters:
        iterationId - an identifier which is uniquely associated with a given iteration.
        Throws:
        java.lang.Throwable
      • doRollback

        protected void doRollback()