1. ホーム
  2. java

[解決済み] BroadcastReceiver Vs WakefulBroadcastReceiver

2022-02-17 20:08:57

質問

との正確な違いについて、どなたか説明してください。 BroadcastReceiver WakefulBroadcastReceiver ?

それぞれのReceiverクラスを使用しなければならないのは、どのような場合でしょうか?

どのように解決するのですか?

との違いは1つだけです。 BroadcastReceiverWakefulBroadcastReceiver .

中の放送を受信すると onReceive() メソッドを使用します。

とします。

BroadcastReceiver :

  • それは 保証外 その CPUが起動したままになる 長時間実行されるプロセスを開始した場合。CPUはすぐにスリープに戻るかもしれません。

WakefulBroadcastReceiver :

  • それは 保証 その CPUが眠らない を発射するまで completeWakefulIntent .

ここでは、ブロードキャストを受信すると、サービスを開始することになるので WakefulBroadcastReceiver を保持します。 wakelock を起動し、サービス内の作業を終了するまでCPUをスリープさせません。 completeWakefulIntent

コード

public class SimpleWakefulReceiver extends WakefulBroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        // This is the Intent to deliver to our service.
        Intent service = new Intent(context, SimpleWakefulService.class);

        // Start the service, keeping the device awake while it is launching.
        Log.i("SimpleWakefulReceiver", "Starting service @ " + SystemClock.elapsedRealtime());
        startWakefulService(context, service);
    }
}

class SimpleWakefulService extends IntentService {
    public SimpleWakefulService() {
        super("SimpleWakefulService");
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        // At this point SimpleWakefulReceiver is still holding a wake lock
        // for us.  We can do whatever we need to here and then tell it that
        // it can release the wakelock.  This sample just does some slow work,
        // but more complicated implementations could take their own wake
        // lock here before releasing the receiver's.
        //
        // Note that when using this approach you should be aware that if your
        // service gets killed and restarted while in the middle of such work
        // (so the Intent gets re-delivered to perform the work again), it will
        // at that point no longer be holding a wake lock since we are depending
        // on SimpleWakefulReceiver to that for us.  If this is a concern, you can
        // acquire a separate wake lock here.
        for (int i=0; i<5; i++) {
            Log.i("SimpleWakefulReceiver", "Running service " + (i+1)
                    + "/5 @ " + SystemClock.elapsedRealtime());
            try {
                Thread.sleep(5000);
            } catch (InterruptedException e) {
            }
        }
        Log.i("SimpleWakefulReceiver", "Completed service @ " + SystemClock.elapsedRealtime());
        SimpleWakefulReceiver.completeWakefulIntent(intent);
    }
}