Package com.dropbox.core.v1
Class DbxDeltaC<C>
- java.lang.Object
- 
- com.dropbox.core.util.Dumpable
- 
- com.dropbox.core.v1.DbxDeltaC<C>
 
 
- 
- Type Parameters:
- C- The type of value used to aggregate all the delta entries. For example, if you process the delta entries as they come in and throw the rest away
 
 public class DbxDeltaC<C> extends Dumpable Represents a single "page" of results from a delta-style API call. This is the more generic version ofDbxDeltaobject.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classDbxDeltaC.Entry<MD extends Dumpable>A single "delta entry" in aDbxDeltaCpage.static classDbxDeltaC.Reader<C,MD extends Dumpable>For JSON parsing.
 - 
Field SummaryFields Modifier and Type Field Description java.lang.StringcursorA string that is used by the server to keep track of which entries have already been returned to you.CentriesApply these entries to your local state to catch up with the Dropbox server's state.booleanhasMoreIftrue, then there are more entries available.booleanresetIftrue, then you should reset your local state to be an empty folder before processing the list of delta entries.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddumpFields(DumpWriter out)- 
Methods inherited from class com.dropbox.core.util.DumpablegetTypeName, toString, toString, toStringMultiline, toStringMultiline
 
- 
 
- 
- 
- 
Field Detail- 
resetpublic final boolean reset Iftrue, then you should reset your local state to be an empty folder before processing the list of delta entries.This is always truefor the first delta result, but for subsequent results it is true only intruerare situations. For example, if Dropbox changes their cursor format, or if a user asks Dropbox to completely reset his/her account, then the next time you call a delta API it may send down a reset and start you from scratch.
 - 
entriespublic final C entries Apply these entries to your local state to catch up with the Dropbox server's state.
 - 
cursorpublic final java.lang.String cursor A string that is used by the server to keep track of which entries have already been returned to you. This is what you pass in to the next API call to continue where you left off.This cursor is valid for a long time. You'd typically store this somewhere persistent (such as a database) so you can resume continue you left off. 
 - 
hasMorepublic final boolean hasMore Iftrue, then there are more entries available. You can retrieve them immediately by making the call again (passing incursor). Iffalse, then wait at least 5 minutes before checking again.
 
- 
 - 
Method Detail- 
dumpFieldsprotected void dumpFields(DumpWriter out) - Specified by:
- dumpFieldsin class- Dumpable
 
 
- 
 
-