com.timeindexing.event
Interface IndexPrimaryEventListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
TimeIndexFactory

public interface IndexPrimaryEventListener
extends java.util.EventListener

An Index Primary Event Listener, which is used at primary moments. These include: open , close, flush, create.


Method Summary
 void closed(IndexPrimaryEvent ipe)
          A notification that an Index has been closed.
 void created(IndexPrimaryEvent ipe)
          A notification that an Index has been created.
 void flushed(IndexPrimaryEvent ipe)
          A notification that an Index has been flushed.
 void opened(IndexPrimaryEvent ipe)
          A notification that an Index has been opened.
 

Method Detail

opened

public void opened(IndexPrimaryEvent ipe)
A notification that an Index has been opened.


closed

public void closed(IndexPrimaryEvent ipe)
A notification that an Index has been closed.


flushed

public void flushed(IndexPrimaryEvent ipe)
A notification that an Index has been flushed.


created

public void created(IndexPrimaryEvent ipe)
A notification that an Index has been created.