Clarification about this API - DbxUserFilesRequests.listFolderContinue
DbxUserFilesRequests.listFolderContinue(String cursor)
https://dropbox.github.io/dropbox-sdk-java/api-docs/v2.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#listFolderContinue-java.lang.String-
- Say i call listFolder() and i got back 50 results [1 .. 50] , and a "cursor"
- After say 1 minute i call listFolderContinue(cursor)
- Assume we are only looking for folder's immediate content and 'not recursive'
- Assume the folder contents have not changed.
Assumption
This API will return results from '51 th' file and *will not include any repeat results* from [1 .. 50]
1. Is this assumption correct ?
2. Is there any 'timeout' for this 'cursor' (assume folder contents have not changed)
Thanks in advance