Skip to content

Commit f4f9882

Browse files
committed
more apidocs
1 parent d50fd8f commit f4f9882

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/com/arangodb/entity/ReplicationSyncEntity.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,22 @@
1919
import java.util.List;
2020

2121
/**
22+
* Result of a full data synchronization from a remote endpoint into the local ArangoDB database.
23+
*
2224
* @author tamtam180 - kirscheless at gmail.com
2325
*
2426
*/
2527
public class ReplicationSyncEntity extends BaseEntity {
2628

29+
/**
30+
* a list of collections that were transferred from the endpoint
31+
*/
2732
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+
*/
2838
long lastLogTick;
2939

3040
public List<CollectionEntity> getCollections() {

0 commit comments

Comments
 (0)