public abstract class CollectionFileChangeAdapter extends java.lang.Object implements CollectionFileChangeListener
| Constructor and Description |
|---|
CollectionFileChangeAdapter() |
| 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.
|
public void collectionFileAdded(java.lang.String collectionName)
CollectionFileChangeListenercollectionFileAdded in interface CollectionFileChangeListenercollectionName - the name of the collection for which a file was detected.public void collectionFileDeleted(java.lang.String collectionName)
CollectionFileChangeListenercollectionFileDeleted in interface CollectionFileChangeListenercollectionName - the name of the collection for which a file was deleted.public void collectionFileModified(java.lang.String collectionName)
CollectionFileChangeListenercollectionFileModified in interface CollectionFileChangeListenercollectionName - the name of the collection whose corresponding file was modified.