All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.leancloud.push.LCShutdownReceiver Maven / Gradle / Ivy

package cn.leancloud.push;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

/**
 * Created by fengjunwen on 2018/7/3.
 */

public class LCShutdownReceiver extends BroadcastReceiver {
  private LCShutdownListener listener;

  public LCShutdownReceiver(LCShutdownListener listener) {
    this.listener = listener;
  }

  public void onReceive(Context context, Intent intent) {
    this.listener.onShutdown(context);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy