Example usage for android.app Service subclass-usage

List of usage examples for android.app Service subclass-usage

Introduction

In this page you can find the example usage for android.app Service subclass-usage.

Usage

From source file cc.arduino.mvd.services.XivelyService.java

/**
 * This is the XIVELY integration of MVD. It uses MQTT to read and write values from a Xively
 * feed. To make this service work the user need to pass the api key and the feed id. When the
 * service is running new values will be posted to channels within the feed, identified by the code
 * and the pin together in a string (code+pin, for example L+13).
 * <p/>

From source file com.jesusla.google.BillingService.java

/**
 * This class sends messages to Android Market on behalf of the application by
 * connecting (binding) to the MarketBillingService. The application
 * creates an instance of this class and invokes billing requests through this service.
 *
 * The {@link BillingReceiver} class starts this service to process commands

From source file com.embedded.dgu.crimenotifier.MyRecoBackgroundRangingService.java

/**
 * RECOBackgroundRangingService is to monitor regions and range regions when the device is inside in the BACKGROUND.
 *
 * RECOBackgroundMonitoringService ?? monitoring? ,  region    ? ?? ranging? .
 */
public class MyRecoBackgroundRangingService extends Service

From source file com.commonsware.android.webserver.template.WebServerService.java

public class WebServerService extends Service {
    private AsyncHttpServer server;
    private Handlebars handlebars;
    private Template t;

    @Override

From source file com.cyanogenmod.settings.device.LtoDownloadService.java

public class LtoDownloadService extends Service {
    private static final String TAG = "LtoDownloadService";
    private static final boolean ALOGV = true;

    private static final String LTO_SOURCE_URI_PATTERN = "http://gllto.glpals.com/%s/v2/latest/lto2.dat";
    private static final File LTO_DESTINATION_FILE = new File("/data/gps/lto.dat");

From source file com.marianhello.bgloc.LocationService.java

public class LocationService extends Service {

    /** Keeps track of all current registered clients. */
    HashMap<Integer, Messenger> mClients = new HashMap();

    /**

From source file com.openerp.services.MessageSyncService.java

/**
 * The Class MessageSyncService.
 */
public class MessageSyncService extends Service {

    /**

From source file mobisocial.musubi.service.AppUpdaterService.java

public class AppUpdaterService extends Service {
    public static boolean DBG = false;
    public static final String TAG = AppUpdaterService.class.getName();

    HandlerThread mThread;
    AppManager mAppManager;

From source file com.a3did.partner.recosample.RecoBackgroundRangingService.java

/**
 * RECOBackgroundRangingService is to monitor regions and range regions when the device is inside in the BACKGROUND.
 *
 * RECOBackgroundMonitoringService ?? monitoring? ,  region    ? ?? ranging? .
 */
public class RecoBackgroundRangingService extends Service

From source file be.ugent.zeus.hydra.util.audiostream.MusicService.java

/**
 * Service that handles media playback. This is the Service through which we perform all the media
 * handling in our application. Upon initialization, it starts a {@link MusicRetriever} to scan the
 * user's media. Then, it waits for Intents (which come from our main activity,
 * {@link MainActivity}, which signal the service to perform specific operations: Play, Pause,
 * Rewind, Skip, etc.