Example usage for android.support.v4.content WakefulBroadcastReceiver subclass-usage

List of usage examples for android.support.v4.content WakefulBroadcastReceiver subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.content WakefulBroadcastReceiver subclass-usage.

Usage

From source file com.appdynamics.demo.gasp.gcm.GCMBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to

From source file org.tecsos.pasos.comm.GcmBroadcastReceiver.java

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    /* (non-Javadoc)
     * @see android.content.BroadcastReceiver#onReceive(android.content.Context, android.content.Intent)
     */
    @Override

From source file com.irccloud.android.SyncReceiver.java

public class SyncReceiver extends WakefulBroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        if (ServersList.getInstance().count() > 0) {
            Crashlytics.log(Log.INFO, "IRCCloud", "Launching backlog sync service");
            Intent service = new Intent(context, SyncService.class);

From source file it.gulch.linuxday.android.receivers.AlarmReceiver.java

/**
 * Entry point for system-generated events: boot complete and alarms.
 *
 * @author Christophe Beyls
 */
public class AlarmReceiver extends WakefulBroadcastReceiver {

From source file uk.co.deansserver.acontextreasoner.logging.BackupLogAlarmReceiver.java

/**
 * BroadcastReceiver for getting alarms for log backup.
 *
 * @author Dean Kramer <deankramer99@gmail.com>
 */
public class BackupLogAlarmReceiver extends WakefulBroadcastReceiver {

From source file com.jens.voicemsg.GcmBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to

From source file uk.co.deansserver.acontextreasoner.ContextReasonerBootReceiver.java

/**
 * BroadcastReceiver to receive BOOT_COMPLETED Intent broadcast
 *
 * @author Dean Kramer <deankramer99@gmail.com>
 */
public class ContextReasonerBootReceiver extends WakefulBroadcastReceiver {

From source file com.cloudbees.gasp.gcm.GCMBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to

From source file com.koma.music.service.MediaButtonIntentReceiver.java

/**
 * Created by koma on 3/27/17.
 */

public class MediaButtonIntentReceiver extends WakefulBroadcastReceiver {
    private static final String TAG = MediaButtonIntentReceiver.class.getSimpleName();

From source file kookmin.cs.firstcoin.BP_pos.GcmBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to