Lucene++ - a full-featured, c++ search engine
API Documentation


DocumentsWriterThreadState.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3 // Distributable under the terms of either the Apache License (Version 2.0)
4 // or the GNU Lesser General Public License.
6 
7 #ifndef DOCUMENTSWRITERTHREADSTATE_H
8 #define DOCUMENTSWRITERTHREADSTATE_H
9 
10 #include "LuceneObject.h"
11 
12 namespace Lucene {
13 
18 public:
21 
23 
24 public:
25  bool isIdle; // false if this is currently in use by a thread
26  int32_t numThreads; // Number of threads that share this instance
27  bool doFlushAfter; // true if we should flush after processing current doc
31 
32 public:
33  virtual void initialize();
34  void doAfterFlush();
35 };
36 
37 }
38 
39 #endif
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Used by DocumentsWriter to maintain per-thread state. We keep a separate Posting hash and other state...
Definition: DocumentsWriterThreadState.h:17
virtual void initialize()
Called directly after instantiation to create objects that depend on this object being fully construc...
DocConsumerPerThreadPtr consumer
Definition: DocumentsWriterThreadState.h:28
DocumentsWriterThreadState(const DocumentsWriterPtr &docWriter)
bool doFlushAfter
Definition: DocumentsWriterThreadState.h:27
int32_t numThreads
Definition: DocumentsWriterThreadState.h:26
bool isIdle
Definition: DocumentsWriterThreadState.h:22
DocStatePtr docState
Definition: DocumentsWriterThreadState.h:29
DocumentsWriterWeakPtr _docWriter
Definition: DocumentsWriterThreadState.h:30
Base class for all Lucene classes.
Definition: LuceneObject.h:31
Definition: AbstractAllTermDocs.h:12
boost::shared_ptr< DocState > DocStatePtr
Definition: LuceneTypes.h:122
boost::shared_ptr< DocumentsWriter > DocumentsWriterPtr
Definition: LuceneTypes.h:123
boost::weak_ptr< DocumentsWriter > DocumentsWriterWeakPtr
Definition: LuceneTypes.h:123
boost::shared_ptr< DocConsumerPerThread > DocConsumerPerThreadPtr
Definition: LuceneTypes.h:107

clucene.sourceforge.net