Within the ContentResolver class, there are several constants that are used for syncadpaters. I want to know what the constant SYNC_EXTRAS_UPLOAD is used for?

link|improve this question

61% accept rate
feedback

1 Answer

If you check in the SyncManager.java file you find this comment:

If the ContentResolver.SYNC_EXTRAS_UPLOAD boolean in extras is * true then initiate a sync that just checks for local changes to send * to the server, otherwise initiate a sync that first gets any * changes from the server before sending local changes back to * the server.

and from the same file this is the implementation of the scheduleLocalSync API

public void scheduleLocalSync(Account account, String authority) {
    final Bundle extras = new Bundle();
    extras.putBoolean(ContentResolver.SYNC_EXTRAS_UPLOAD, true);
    scheduleSync(account, authority, extras, LOCAL_SYNC_DELAY,
            false /* onlyThoseWithUnkownSyncableState */);
}

The method onPerformSyncof your syncadapter receives those extras as one of the paramters

link|improve this answer
I tried putting this extra in a requestSync call but never get a sync trigger or this extra – Hank Feb 13 at 14:49
You called requestSync and you did not get the onPerformSync triggered? That's weird because I did it several times. Or you meant that you get a call to onPerformSync but there were no extras? – herschel Feb 13 at 22:37
Nope, onPerformSync was never triggered – Hank Feb 14 at 4:20
So you have something wrong somewhere else it does not have to do with SYNC_EXTRAS_UPLOAD. Have you added your Account? Have you passed the right Account? – herschel Feb 14 at 19:35
BTW why aren't you calling scheduleLocalSync directly? – herschel Feb 14 at 19:35
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.