Class SerialMergeScheduler

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable, java.lang.Cloneable

    public class SerialMergeScheduler
    extends MergeScheduler
    A MergeScheduler that simply does each merge sequentially, using the current thread.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()
      Close this MergeScheduler.
      void merge​(IndexWriter writer)
      Just do the merges in sequence.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SerialMergeScheduler

        public SerialMergeScheduler()
        Sole constructor.
    • Method Detail

      • merge

        public void merge​(IndexWriter writer)
                   throws java.io.IOException
        Just do the merges in sequence. We do this "synchronized" so that even if the application is using multiple threads, only one merge may run at a time.
        Specified by:
        merge in class MergeScheduler
        Throws:
        java.io.IOException
      • close

        public void close()
        Description copied from class: MergeScheduler
        Close this MergeScheduler.
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in class MergeScheduler