Package com.dropbox.core.v1
Class DbxLongpollDeltaResult
- java.lang.Object
-
- com.dropbox.core.v1.DbxLongpollDeltaResult
-
public class DbxLongpollDeltaResult extends java.lang.Object
The response from a longpoll_delta request.
-
-
Field Summary
Fields Modifier and Type Field Description long
backoff
If non-negative, this is the number of seconds the Dropbox server wants you to wait before polling again.boolean
mightHaveChanges
If true, then there might changes and one of the DbxClientV1 "delta" methods can be used to retrieve them.static JsonReader<DbxLongpollDeltaResult>
Reader
-
Constructor Summary
Constructors Constructor Description DbxLongpollDeltaResult(boolean mightHaveChanges, long backoff)
-
-
-
Field Detail
-
mightHaveChanges
public 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.
-
backoff
public long backoff
If non-negative, this is the number of seconds the Dropbox server wants you to wait before polling again.
-
Reader
public static final JsonReader<DbxLongpollDeltaResult> Reader
-
-