Package com.couchbase.lite
Interface DocumentChangeListener
-
- All Superinterfaces:
ChangeListener<DocumentChange>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface DocumentChangeListener extends ChangeListener<DocumentChange>
The listener interface for receiving Document change events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
changed(DocumentChange change)
Callback function from Database when the specified document is updated.
-
-
-
Method Detail
-
changed
void changed(@NonNull DocumentChange change)
Callback function from Database when the specified document is updated.- Specified by:
changed
in interfaceChangeListener<DocumentChange>
- Parameters:
change
- description of the change
-
-