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

cn.leancloud.AVFCMJobService Maven / Gradle / Ivy

There is a newer version: 8.2.28
Show newest version
package cn.leancloud;

import android.util.Log;

import com.firebase.jobdispatcher.JobParameters;
import com.firebase.jobdispatcher.JobService;

/**
 * Created by fengjunwen on 2018/8/28.
 */

public class AVFCMJobService extends JobService {
  private static final String TAG = "AVFCMJobService";

  public boolean onStartJob(JobParameters job) {
    Log.d(TAG, "Performing long running task in scheduled job");
    return false;
  }

  public boolean onStopJob(JobParameters job) {
    Log.d(TAG, "end long running task in scheduled job");
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy