Uses of Class
org.apache.lucene.store.LockObtainFailedException

Packages that use LockObtainFailedException
org.apache.lucene.benchmark.byTask.tasks Extendable benchmark tasks. 
org.apache.lucene.index Code to maintain and access indices. 
org.apache.lucene.store Binary i/o API, used for all index data. 
 

Uses of LockObtainFailedException in org.apache.lucene.benchmark.byTask.tasks
 

Methods in org.apache.lucene.benchmark.byTask.tasks that throw LockObtainFailedException
static IndexWriter CreateIndexTask.configureWriter(Config config, PerfRunData runData, IndexWriterConfig.OpenMode mode, IndexCommit commit)
           
 

Uses of LockObtainFailedException in org.apache.lucene.index
 

Methods in org.apache.lucene.index that throw LockObtainFailedException
 void IndexReader.deleteDocument(int docNum)
          Deletes the document numbered docNum.
 int IndexReader.deleteDocuments(Term term)
          Deletes all documents that have a given term indexed.
 void IndexReader.setNorm(int doc, String field, byte value)
          Expert: Resets the normalization factor for the named field of the named document.
 void IndexReader.setNorm(int doc, String field, float value)
          Deprecated. Use IndexReader.setNorm(int, String, byte) instead, encoding the float to byte with your Similarity's Similarity.encodeNormValue(float). This method will be removed in Lucene 4.0
 void IndexReader.undeleteAll()
          Undeletes all documents currently marked as deleted in this index.
 

Constructors in org.apache.lucene.index that throw LockObtainFailedException
IndexWriter(Directory d, Analyzer a, boolean create, IndexDeletionPolicy deletionPolicy, IndexWriter.MaxFieldLength mfl)
          Deprecated. use IndexWriter.IndexWriter(Directory, IndexWriterConfig) instead
IndexWriter(Directory d, Analyzer a, boolean create, IndexWriter.MaxFieldLength mfl)
          Deprecated. use IndexWriter.IndexWriter(Directory, IndexWriterConfig) instead
IndexWriter(Directory d, Analyzer a, IndexDeletionPolicy deletionPolicy, IndexWriter.MaxFieldLength mfl)
          Deprecated. use IndexWriter.IndexWriter(Directory, IndexWriterConfig) instead
IndexWriter(Directory d, Analyzer a, IndexDeletionPolicy deletionPolicy, IndexWriter.MaxFieldLength mfl, IndexCommit commit)
          Deprecated. use IndexWriter.IndexWriter(Directory, IndexWriterConfig) instead
IndexWriter(Directory d, Analyzer a, IndexWriter.MaxFieldLength mfl)
          Deprecated. use IndexWriter.IndexWriter(Directory, IndexWriterConfig) instead
IndexWriter(Directory d, IndexWriterConfig conf)
          Constructs a new IndexWriter per the settings given in conf.
PersistentSnapshotDeletionPolicy(IndexDeletionPolicy primary, Directory dir, IndexWriterConfig.OpenMode mode, Version matchVersion)
          PersistentSnapshotDeletionPolicy wraps another IndexDeletionPolicy to enable flexible snapshotting.
 

Uses of LockObtainFailedException in org.apache.lucene.store
 

Methods in org.apache.lucene.store that throw LockObtainFailedException
 boolean Lock.obtain(long lockWaitTimeout)
          Attempts to obtain an exclusive lock within amount of time given.
 Object Lock.With.run()
          Calls Lock.With.doBody() while lock is obtained.
 



Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.