List of usage examples for android.content AbstractThreadedSyncAdapter subclass-usage
From source file org.gege.caldavsyncadapter.syncadapter.SyncAdapter.java
public class SyncAdapter extends AbstractThreadedSyncAdapter { private static final String TAG = "SyncAdapter"; private AccountManager mAccountManager; private String mVersion = ""; private int mCountPerformSync = 0;
From source file org.mozilla.gecko.sync.syncadapter.SyncAdapter.java
public class SyncAdapter extends AbstractThreadedSyncAdapter implements GlobalSessionCallback { private static final String LOG_TAG = "SyncAdapter"; private static final String PREFS_EARLIEST_NEXT_SYNC = "earliestnextsync"; private static final String PREFS_INVALIDATE_AUTH_TOKEN = "invalidateauthtoken";
From source file org.pixmob.droidlink.sync.SyncAdapter.java
/** * Synchronize events between this device and the remote server. * @author Pixmob */ public class SyncAdapter extends AbstractThreadedSyncAdapter { private static final String[] PROJECTION = { _ID, TYPE, CREATED, NUMBER, NAME, MESSAGE, STATE };
From source file com.triarc.sync.SyncAdapter.java
/**
* Define a sync adapter for the app.
*
* <p>
* This class is instantiated in {@link SyncService}, which also binds
* SyncAdapter to the system. SyncAdapter should only be initialized in
From source file pt.up.mobile.syncadapter.SigarraSyncAdapter.java
public class SigarraSyncAdapter extends AbstractThreadedSyncAdapter { final static String SINGLE_REQUEST = "single_request"; final static String REQUEST_TYPE = "request_type"; final static String PROFILE = "profile";
From source file com.adkdevelopment.earthquakesurvival.data.syncadapter.SyncAdapter.java
/** * SyncAdapter, which performs all network-related work, * sends notifications each day. * Created by karataev on 4/1/16. */ public class SyncAdapter extends AbstractThreadedSyncAdapter {
From source file com.versacomllc.audit.network.sync.SyncAdapter.java
/**
* Define a sync adapter for the app.
*
* <p>
* This class is instantiated in {@link SyncService}, which also binds
* SyncAdapter to the system. SyncAdapter should only be initialized in
From source file com.skywomantechnology.app.guildviewer.sync.GuildViewerSyncAdapter.java
/**
* This class does the bulk of the work for getting the Guild News Feed data from the WOW API. It
* sets up a periodic check for remote data from Blizzard's World of Warcraft API.
* It allows the data to be synced on command. It retrieves and parses the JSON data, puts it in
* local storage, and sends out a Notification when newer news items are found.
*
From source file com.jackie.sunshine.app.sync.SunshineSyncAdapter.java
/**
* Created 17/5/12.
*
* @author Jackie
* @version 1.0
*/
From source file com.github.vseguip.sweet.contacts.SweetContactSync.java
/** * @author vseguip * */ public class SweetContactSync extends AbstractThreadedSyncAdapter {