Class 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)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.
    • Constructor Detail

      • DbxLongpollDeltaResult

        public DbxLongpollDeltaResult​(boolean mightHaveChanges,
                                      long backoff)