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, commit, create.


Method Summary
 void closed(IndexPrimaryEvent ipe)
          A notification that an Index has been closed.
 void committed(IndexPrimaryEvent ipe)
          A notification that an Index has been committed.
 void created(IndexPrimaryEvent ipe)
          A notification that an Index has been created.
 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.


committed

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


created

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