将侦听器附加到 FirebaseJobDispatcher 中的 FirebaseDb



我正在使用 Firebase Job Dispatcher 执行一项定期任务,该任务每 15 分钟执行一次,并检查 Firebase 数据库中的数据并显示有关最新数据的通知。
我面临的问题是,侦听器没有正确连接onStartJob,即onDataAdded中的日志记录语句永远不会被调用。
我在下面链接了我的代码,

public class FetchInfoService extends JobService {
InfoObject note;
NotificationCompat.Builder notificationBuilder;
private static final String TAG = "SyncService";
public FetchInfoService() {
}
@Override
public boolean onStartJob(com.firebase.jobdispatcher.JobParameters job) {
    Log.e(TAG, "Executing job id: " + job.getTag());
    DatabaseReference dbReference = FirebaseDatabase.getInstance().getReference().child(CONTENT);
    Log.e(TAG,dbReference.getKey());
    dbReference.addValueEventListener(new ValueEventListener() {
        @Override
        public void onDataChange(DataSnapshot dataSnapshot) {
            Log.e(TAG,"OnDataChanged Called");    //----Never Called

            for (DataSnapshot infoDataSnapshot : dataSnapshot.getChildren()) {
                note = infoDataSnapshot.getValue(InfoObject.class);
            }
        }
        @Override
        public void onCancelled(DatabaseError databaseError) {
            Log.e(TAG,"Listener Cancelled");
        }
    });
notificationBuilder = new NotificationCompat.Builder(getApplicationContext())
                    .setSmallIcon(R.drawable.ic_delete_black_48dp)
                    .setContentTitle(note.getTitle())
                    .setContentText(note.getDescription());
    NotificationManager mNotificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    mNotificationManager.notify(1, notificationBuilder.build());
    return false;
}
@Override
public boolean onStopJob(com.firebase.jobdispatcher.JobParameters job) {
    Log.e(TAG, "Finished job: " + job.getTag());
    return false;
}
}

谢谢

显然,为什么从未调用侦听器的原因是我的代码在显示通知的地方不断抛出空指针异常,因此它从未达到我附加侦听器并侦听数据库中的更改的地步。移动代码以在内部显示通知onChildAdded为我修复了它。

相关内容

  • 没有找到相关文章

最新更新