List of usage examples for android.content AbstractThreadedSyncAdapter subclass-usage
From source file com.nononsenseapps.notepad.sync.SyncAdapter.java
/**
* This adapter syncs with GoogleTasks API. Each sync is an incremental sync
* from our last sync. This is accomplished with a combinatinon of etags and
* last updated time stamp. The API returns a "global" e-tag (hash-value of all
* content). If this is the same as the etag we have, then nothing has changed
* on server. Hence, we can know that there is nothing to download. If the etag
From source file com.mobileaffairs.seminar.videolib.VideoLibSyncAdapter.java
public class VideoLibSyncAdapter extends AbstractThreadedSyncAdapter { public VideoLibSyncAdapter(Context context, boolean autoInitialize) { super(context, autoInitialize); }
From source file org.anhonesteffort.flock.sync.AbstractDavSyncAdapter.java
/** * Programmer: rhodey * Date: 3/9/14 */ public abstract class AbstractDavSyncAdapter extends AbstractThreadedSyncAdapter {
From source file com.alphabetbloc.accessmrs.services.SyncAdapter.java
/**
* Class that coordinates all Sync interaction with the server. Manages the
* connectivity and passes streams off to SyncManager to handle.
*
* @author Louis Fazen (louis.fazen@gmail.com)
*
From source file org.ohmage.sync.ResponseSyncAdapter.java
/** * Handle the transfer of data between a server the ohmage app using the Android sync adapter * framework. */ public class ResponseSyncAdapter extends AbstractThreadedSyncAdapter {
From source file com.manning.androidhacks.hack023.service.TodoSyncAdapter.java
handleException(authtoken, e, syncResult); } } protected void syncDirtyToServer(List<Todo> dirtyList)
From source file com.google.android.apps.gutenberg.provider.SyncAdapter.java
public class SyncAdapter extends AbstractThreadedSyncAdapter { public static final String EXTRA_AUTH_TOKEN = "auth_token"; /** * Boolean extra for syncing checkinTime only
From source file de.azapps.mirakel.sync.SyncAdapter.java
public class SyncAdapter extends AbstractThreadedSyncAdapter { private final static String TAG = "SyncAdapter"; public static final String BUNDLE_SERVER_URL = "url", BUNDLE_CERT = "de.azapps.mirakel.cert", BUNDLE_ORG = "de.azapps.mirakel.org"; public static final String BUNDLE_SERVER_TYPE = "type"; public static final String TASKWARRIOR_KEY = "key";
From source file org.exfio.weavedroid.syncadapter.WeaveSyncAdapter.java
public abstract class WeaveSyncAdapter extends AbstractThreadedSyncAdapter implements Closeable { private final static String TAG = "exfio.WeaveSyncAdapter"; @Getter private static String androidID;
From source file com.ravi.apps.android.newsbytes.sync.NewsSyncAdapter.java
/** * Sync adapter to query the news data from the New York Times server. */ public class NewsSyncAdapter extends AbstractThreadedSyncAdapter { // Tag for logging messages.