I want to know about what is a difference between document change listener, database change listener and replicator change listener. How are they internally works and which is better from these events
brief information on some change listeners for getting document updates.
Database.addDocumentChangeListener(with: docID) for getting changes for a document with given ID. These might be the one you are looking for, when any change happens to a document in the database.
Database.addChangeListener can be used to observer any change that happens inside the database. It will include databaseChange(database & document-ids) which can be used to track the changes.
AbstractReplicator.addDocumentReplicationListener for getting the replication status for documents. if you have enabled replication, try to push/pull changes, and want to observe event when done with it.