List of usage examples for android.app IntentService subclass-usage
From source file cl.chihau.holaauto.MyMessagingService.java
public class MyMessagingService extends IntentService { private static final String TAG = MyMessagingService.class.getSimpleName(); public static final String SEND_MESSAGE_ACTION = "cl.chihau.holaauto.ACTION_SEND_MESSAGE"; public static final String READ_ACTION = "cl.chihau.holaauto.ACTION_MESSAGE_READ"; public static final String REPLY_ACTION = "cl.chihau.holaauto.ACTION_MESSAGE_REPLY";
From source file com.example.administrator.e_pic.GcmIntentService.java
/**
* This {@code IntentService} does the actual handling of the GCM message.
* {@code GcmBroadcastReceiver} (a {@code WakefulBroadcastReceiver}) holds a
* partial wake lock for this service while the service does its work. When the
* service is finished, it calls {@code completeWakefulIntent()} to release the
* wake lock.
From source file com.dciets.cumets.service.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {
From source file com.android.anton.pushnotificationwithgcm.GCMUtil.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {
From source file se.leap.bitmaskclient.eip.EIP.java
/**
* EIP is the abstract base class for interacting with and managing the Encrypted
* Internet Proxy connection. Connections are started, stopped, and queried through
* this IntentService.
* Contains logic for parsing eip-service.json from the provider, configuring and selecting
* gateways, and controlling {@link de.blinkt.openvpn.core.OpenVPNService} connections.
From source file com.campusconnect.gcm.GcmIntentService.java
/** * Handles the GCM notifications for the application. */ public class GcmIntentService extends IntentService { /**
From source file com.districtofwonders.pack.gcm.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = RegistrationIntentService.class.getSimpleName(); public RegistrationIntentService() { super(TAG);
From source file com.barelabor.barelabor.gcm.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {
From source file com.lhtechnologies.DoorApp.AuthenticatorService.java
public class AuthenticatorService extends IntentService { private String udid, secret, address, deviceName, clientVersion; private HttpsURLConnection urlConnection; public AuthenticatorService() { super("AuthenticatorService");
From source file com.clanofthecloud.cotcpushnotifications.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; private static String registrationToken;