We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50fd8f commit f4f9882Copy full SHA for f4f9882
src/main/java/com/arangodb/entity/ReplicationSyncEntity.java
@@ -19,12 +19,22 @@
19
import java.util.List;
20
21
/**
22
+ * Result of a full data synchronization from a remote endpoint into the local ArangoDB database.
23
+ *
24
* @author tamtam180 - kirscheless at gmail.com
25
*
26
*/
27
public class ReplicationSyncEntity extends BaseEntity {
28
29
+ /**
30
+ * a list of collections that were transferred from the endpoint
31
+ */
32
List<CollectionEntity> collections;
33
+
34
35
+ * the last log tick on the endpoint at the time the transfer was started. Use this value as the from value when
36
+ * starting the continuous synchronization later.
37
38
long lastLogTick;
39
40
public List<CollectionEntity> getCollections() {
0 commit comments