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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
DocInverter.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2011 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 DOCINVERTER_H
8 #define DOCINVERTER_H
9 
10 #include "DocFieldConsumer.h"
11 
12 namespace Lucene
13 {
17  {
18  public:
20  virtual ~DocInverter();
21 
23 
24  public:
27 
28  public:
30 
32  virtual void flush(MapDocFieldConsumerPerThreadCollectionDocFieldConsumerPerField threadsAndFields, SegmentWriteStatePtr state);
33 
35  virtual void closeDocStore(SegmentWriteStatePtr state);
36 
38  virtual void abort();
39 
41  virtual bool freeRAM();
42 
44  virtual DocFieldConsumerPerThreadPtr addThread(DocFieldProcessorPerThreadPtr docFieldProcessorPerThread);
45  };
46 }
47 
48 #endif

clucene.sourceforge.net