Example usage for android.content AbstractThreadedSyncAdapter subclass-usage

List of usage examples for android.content AbstractThreadedSyncAdapter subclass-usage

Introduction

In this page you can find the example usage for android.content AbstractThreadedSyncAdapter subclass-usage.

Usage

From source file com.digitalarx.android.syncadapter.AbstractOwnCloudSyncAdapter.java

/**
 * Base synchronization adapter for ownCloud designed to be subclassed for different
 * resource types, like FileSync, ConcatsSync, CalendarSync, etc..
 * 
 * Implements the standard {@link AbstractThreadedSyncAdapter}.
 * 

From source file com.example.android.samplesync.syncadapter.SyncAdapter.java

import android.text.TextUtils;
import android.util.Log;

import java.io.IOException;
import java.util.List;

From source file io.cozy.calendarsync.syncadapter.SyncAdapter.java

/**
 * SyncAdapter implementation for syncing sample SyncAdapter contacts to the
 * platform ContactOperations provider.  This sample shows a basic 2-way
 * sync between the client and a sample server.  It also contains an
 * example of how to update the contacts' status messages, which
 * would be useful for a messaging or social networking client.

From source file eu.alefzero.owncloud.syncadapter.AbstractOwnCloudSyncAdapter.java

/**
 * Base SyncAdapter for OwnCloud Designed to be subclassed for the concrete
 * SyncAdapter, like ConcatsSync, CalendarSync, FileSync etc..
 * 
 * @author sassman
 * 

From source file com.bodeme.easycloud.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.snu.msl.sensys.SyncAdapter.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.
 *

From source file com.example.cpulocal.myapplication_sample.samplesync.syncadapter.SyncAdapter.java

/**
 * SyncAdapter implementation for syncing sample SyncAdapter contacts to the
 * platform ContactOperations provider.  This sample shows a basic 2-way
 * sync between the client and a sample server.  It also contains an
 * example of how to update the contacts' status messages, which
 * would be useful for a messaging or social networking client.

From source file com.deliciousdroid.syncadapter.ContactSyncAdapter.java

/**
 * SyncAdapter implementation for syncing sample SyncAdapter contacts to the
 * platform ContactOperations provider.
 */
public class ContactSyncAdapter extends AbstractThreadedSyncAdapter {
    private static final String TAG = "SyncAdapter";

From source file com.owncloud.android.syncadapter.AbstractOwnCloudSyncAdapter.java

/**
 * Base synchronization adapter for ownCloud designed to be subclassed for different
 * resource types, like FileSync, ConcatsSync, CalendarSync, etc..
 * 
 * Implements the standard {@link AbstractThreadedSyncAdapter}.
 */

From source file inforuh.eventfinder.sync.SyncAdapter.java

/**
 * Created by tioammar
 * on 8/13/15.
 */
public class SyncAdapter extends AbstractThreadedSyncAdapter implements Callback {