Lucene++ - a full-featured, c++ search engine
API Documentation
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
include
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
{
16
class
DocInverter
:
public
DocFieldConsumer
17
{
18
public
:
19
DocInverter
(
InvertedDocConsumerPtr
consumer
,
InvertedDocEndConsumerPtr
endConsumer
);
20
virtual
~DocInverter
();
21
22
LUCENE_CLASS
(
DocInverter
);
23
24
public
:
25
InvertedDocConsumerPtr
consumer
;
26
InvertedDocEndConsumerPtr
endConsumer
;
27
28
public
:
29
virtual
void
setFieldInfos
(
FieldInfosPtr
fieldInfos
);
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