Package org.springmodules.lucene.index.factory.concurrent

Examples of org.springmodules.lucene.index.factory.concurrent.LockIndexFactory.afterPropertiesSet()


  protected IndexFactory createIndexFactory(RAMDirectory directory) throws Exception {
    IndexFactory targetIndexFactory = super.createIndexFactory(directory);
    LockIndexFactory indexFactory = new LockIndexFactory();
    indexFactory.setTargetIndexFactory(targetIndexFactory);
    indexFactory.afterPropertiesSet();
    return indexFactory;
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.