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