public interface CollectionFileChangeListener
extends java.util.EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
collectionFileAdded(java.lang.String collectionName)
Invoked when a new file is detected which has a corresponding identified collection.
|
void |
collectionFileDeleted(java.lang.String collectionName)
Invoked when a file which has a corresponding identified collection is deleted
Deleting files in the background is a dangerous operation after such a operation if the database is
reloaded that data will be permanently lost.
|
void |
collectionFileModified(java.lang.String collectionName)
Invoked when a file which has a corresponding identified collection is modified by program other than this one.
|
void collectionFileAdded(java.lang.String collectionName)
collectionName - the name of the collection for which a file was detected.void collectionFileDeleted(java.lang.String collectionName)
collectionName - the name of the collection for which a file was deleted.void collectionFileModified(java.lang.String collectionName)
collectionName - the name of the collection whose corresponding file was modified.