Example usage for android.app IntentService subclass-usage

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

Introduction

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

Usage

From source file com.behance.sdk.services.BehanceSDKPublishProjectService.java

  public class BehanceSDKPublishProjectService extends IntentService {
      private static final ILogger logger = LoggerFactory.getLogger(BehanceSDKPublishProjectService.class);
      private String activePublishRequestId;
      private BehanceSDKPublishProjectBinder projectBinder;
      private BehanceSDKUserManager sdkUserManager;

From source file org.wso2.iot.system.service.SystemService.java

/**
 * This is the service class which exposes all the system level operations
 * to the IoT Agent app. Agent can bind to this service and execute permitted operations by
 * sending necessary parameters.
 */
public class SystemService extends IntentService {

From source file org.wso2.emm.system.service.EMMSystemService.java

/**
 * This is the service class which exposes all the system level operations
 * to the EMM Agent app. Agent can bind to this service and execute permitted operations by
 * sending necessary parameters.
 */
public class EMMSystemService extends IntentService {

From source file it.evilsocket.dsploit.core.UpdateService.java

public class UpdateService extends IntentService {
    // Resources defines
    private static final String REMOTE_VERSION_URL = "http://update.dsploit.net/version";
    private static final String REMOTE_APK_URL = "http://update.dsploit.net/apk";
    private static final String VERSION_CHAR_MAP = "zyxwvutsrqponmlkjihgfedcba";
    private static final String REMOTE_RUBY_VERSION_URL = "https://gist.githubusercontent.com/tux-mind/e594b1cf923183cfcdfe/raw/ruby.json";

From source file org.mariotaku.twidere.service.BackgroundOperationService.java

import org.mariotaku.twidere.api.twitter.TwitterUpload;

import static android.text.TextUtils.isEmpty;
import static org.mariotaku.twidere.util.ContentValuesCreator.createMessageDraft;
import static org.mariotaku.twidere.util.Utils.getImagePathFromUri;
import static org.mariotaku.twidere.util.Utils.getImageUploadStatus;

From source file org.csploit.android.core.UpdateService.java

public class UpdateService extends IntentService {
    // Resources defines
    private static final String REMOTE_GEMS_VERSION_URL = "http://gems.dsploit.net/atom.xml";
    private static final String REMOTE_GEM_SERVER = "http://gems.dsploit.net/";

    // Intent defines

From source file com.android.contacts.ContactSaveService.java

/**
 * A service responsible for saving changes to the content provider.
 */
public class ContactSaveService extends IntentService {
    private static final String TAG = "ContactSaveService";

From source file no.nordicsemi.android.nrftoolbox.dfu.DfuService.java

public class DfuService extends IntentService {
    private static final String TAG = "DfuService";

    public static final String EXTRA_DEVICE_ADDRESS = "no.nordicsemi.android.extra.dfu.EXTRA_DEVICE_ADDRESS";
    public static final String EXTRA_DEVICE_NAME = "no.nordicsemi.android.extra.dfu.EXTRA_DEVICE_NAME";
    public static final String EXTRA_LOG_URI = "no.nordicsemi.android.extra.dfu.EXTRA_LOG_URI";

From source file org.androidannotations.annotations.HttpsClient.java

 @EService
 public class MyService extends IntentService {
 
@@ -60,8 +59,7 @@ protected void onHandleIntent(Intent intent) {
    @Trace
    @UiThread