FileDocCategorySizeDatePackage
IndexEventListenerStub.javaAPI DocApache Lucene 2.1.01451Wed Feb 14 10:46:02 GMT 2007org.apache.lucene.gdata.search.index

IndexEventListenerStub

public class IndexEventListenerStub extends Object implements IndexEventListener
author
Simon Willnauer

Fields Summary
AtomicInteger
count
Constructors Summary
public IndexEventListenerStub()

        super();
       this.count = new AtomicInteger(0);
    
Methods Summary
public voidcommitCallBack(java.lang.String service)

see
org.apache.lucene.gdata.search.index.IndexEventListener#commitCallBack(java.lang.String)

        this.count.incrementAndGet();
    
public intgetCalledCount()

        return this.count.get();