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

com.avos.avospush.push.AVShutdownReceiver Maven / Gradle / Ivy

The newest version!
package com.avos.avospush.push;

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

/**
 * Created by yangchaozhong on 3/14/14.
 */
public class AVShutdownReceiver extends BroadcastReceiver {

  private AVShutdownListener listener;

  public AVShutdownReceiver(AVShutdownListener listener) {
    this.listener = listener;
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy