List of usage examples for android.content AbstractThreadedSyncAdapter subclass-usage
From source file p1.nd.khan.jubair.mohammadd.popularmovies.sync.MovieSyncAdapter.java
public class MovieSyncAdapter extends AbstractThreadedSyncAdapter { public final String LOG_TAG = MovieSyncAdapter.class.getSimpleName(); private Context mContext; private final TrailerSyncAdapter trailerSyncAdapter; private final ReviewSyncAdapter reviewSyncAdapter;
From source file com.granita.icloudcalsync.syncadapter.DavSyncAdapter.java
public abstract class DavSyncAdapter extends AbstractThreadedSyncAdapter implements Closeable { private final static String TAG = "davdroid.DavSyncAdapter"; @Getter private static String androidID;
From source file com.york.cs.swe.SyncAdapter.SyncAdapterCB.java
/**
*
* /** Define a sync adapter for the app.
*
* This class is instantiated in {@link SyncService}, which also binds
* SyncAdapter to the system. SyncAdapter should only be initialized in
From source file com.taxicop.sync.SyncAdapter.java
public class SyncAdapter extends AbstractThreadedSyncAdapter { public static final String TAG = "SyncAdapter"; private final AccountManager mAccountManager; private final Context mContext; public DataBase dba;
From source file com.beesham.popularmovies.sync.MoviesSyncAdapter.java
/** * Created by Beesham on 10/7/2016. */ public class MoviesSyncAdapter extends AbstractThreadedSyncAdapter {
From source file com.nicolacimmino.expensestracker.tracker.data_sync.ExpenseDataSyncAdapter.java
public class ExpenseDataSyncAdapter extends AbstractThreadedSyncAdapter { // Tag used for logging so we can filter messages from this class. public static final String TAG = "ExpenseDataSyncAdapter"; private AccountManager mAccountManager;
From source file com.york.cs.services.SyncAdapter.SyncAdapterCB.java
/**
*
* /** Define a sync adapter for the app.
*
* This class is instantiated in {@link SyncService}, which also binds
* SyncAdapter to the system. SyncAdapter should only be initialized in
From source file com.pindroid.syncadapter.BookmarkSyncAdapter.java
/** * SyncAdapter implementation for syncing bookmarks. */ public class BookmarkSyncAdapter extends AbstractThreadedSyncAdapter { public static final String SYNC_FINISHED_ACTION = "sync_finished";
From source file io.github.hidroh.materialistic.data.ItemSyncAdapter.java
/** * Simple sync adapter that triggers OkHttp requests so their responses become available in * cache for subsequent requests */ class ItemSyncAdapter extends AbstractThreadedSyncAdapter {
From source file com.weimed.app.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 SyncService, never anywhere else.
*