Package com.dropbox.core.v1
Class DbxLongpollDeltaResult
- java.lang.Object
- 
- com.dropbox.core.v1.DbxLongpollDeltaResult
 
- 
 public class DbxLongpollDeltaResult extends java.lang.ObjectThe response from a longpoll_delta request.
- 
- 
Field SummaryFields Modifier and Type Field Description longbackoffIf non-negative, this is the number of seconds the Dropbox server wants you to wait before polling again.booleanmightHaveChangesIf true, then there might changes and one of the DbxClientV1 "delta" methods can be used to retrieve them.static JsonReader<DbxLongpollDeltaResult>Reader
 - 
Constructor SummaryConstructors Constructor Description DbxLongpollDeltaResult(boolean mightHaveChanges, long backoff)
 
- 
- 
- 
Field Detail- 
mightHaveChangespublic boolean mightHaveChanges If true, then there might changes and one of the DbxClientV1 "delta" methods can be used to retrieve them. If false, then the poll finished and you can poll again.
 - 
backoffpublic long backoff If non-negative, this is the number of seconds the Dropbox server wants you to wait before polling again.
 - 
Readerpublic static final JsonReader<DbxLongpollDeltaResult> Reader 
 
- 
 
-