Android Priority Job Queue 入门

2024-08-30 04:48

本文主要是介绍Android Priority Job Queue 入门,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 简介
Android Priority Job Queue是一款专门为Android平台编写,实现了Job Queue的后台任务队列类库,能够轻松的在后台执行定时任务,提高用户体验和应用的稳定性。
github地址:https://github.com/path/android-priority-jobqueue
2. 背景
几乎所有的应用程序都存在后台线程工作。这些“背景任务”需要保持应用程序响应性和鲁棒性,特别是在不利的情况下(如有限的网络连接)。在安卓应用中,有几种方法来实现后台工作:
1) 异步任务:
使用异步任务是最简单的方法,但它与activity生命周期紧密耦合。如果Activity生命周期发生了改变,比如用户旋转了它的屏幕,那么Activity重新加载,那么后台任务可能会被停止。
2) 使用service:
使用服务可以很好地处理界面逻辑,但是,随着事物的增加,可能需要一个线程池来安排队列请求道磁盘中,而且需要考虑任务的优先级和并发时的并发问题
作业队列提供了一个很好的框架来完成上述所有的工作。当确定了你的后台任务的工作时,将它们作为Job添加到你jobmanager实例。Job Manage会照顾优先级,持久性,负载平衡,延迟,网络控制,分组等,它还提供了一个很好的生命周期,为工作提供一个更好的,一致的用户体验。
3. 使用(基于android studio)
1.添加依赖

compile 'com.birbit:android-priority-jobqueue:1.3.5'

2.创建Application并配置JobManager

public class AppApplication extends Application {private JobManager jobManager;public static AppApplication instance;@Overridepublic void onCreate() {super.onCreate();configureJobManager();}public AppApplication(){instance=this;}public JobManager getJobManager() {return jobManager;}public static AppApplication getInstance() {return instance;}private void configureJobManager() {Configuration configuration = new Configuration.Builder(this).customLogger(new CustomLogger() {private static final String TAG = "JOBS";@Overridepublic boolean isDebugEnabled() {return true;}@Overridepublic void d(String text, Object... args) {Log.d(TAG, String.format(text, args));}@Overridepublic void e(Throwable t, String text, Object... args) {Log.e(TAG, String.format(text, args), t);}@Overridepublic void e(String text, Object... args) {Log.e(TAG, String.format(text, args));}}).minConsumerCount(1)//always keep at least one consumer alive.maxConsumerCount(3)//up to 3 consumers at a time.loadFactor(3)//3 jobs per consumer.consumerKeepAlive(120)//wait 2 minute.build();jobManager = new JobManager(this, configuration);}
}

3.创建Job任务

public class MJob extends Job {public static final int PRIORITY = 1;private String text;public MJob(String text) {// This job requires network connectivity,// and should be persisted in case the application exits before job is completed.super(new Params(Integer.parseInt(text)).requireNetwork().persist());this.text = text;Log.i("job",text+"  goin");}@Overridepublic void onAdded() {// Job has been saved to disk.// This is a good place to dispatch a UI event to indicate the job will eventually run.// In this example, it would be good to update the UI with the newly posted tweet.Log.i("job",text+"  Onadded");}@Overridepublic void onRun() throws Throwable {// Job logic goes here. In this example, the network call to post to Twitter is done here.// All work done here should be synchronous, a job is removed from the queue once// onRun() finishes.Log.i("job",text+"  onRun");}@Overrideprotected RetryConstraint shouldReRunOnThrowable(Throwable throwable, int runCount,int maxRunCount) {// An error occurred in onRun.// Return value determines whether this job should retry or cancel. You can further// specify a backoff strategy or change the job's priority. You can also apply the// delay to the whole group to preserve jobs' running order.return RetryConstraint.createExponentialBackoff(runCount, 1000);}@Overrideprotected void onCancel() {}
}
任务调用执行Job时会依次执行onAdded(),onRun().
4.MainActivity 
public class MainActivity extends AppCompatActivity {private JobManager jobManager;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);jobManager = AppApplication.getInstance().getJobManager();Button btn_start = (Button)findViewById(R.id.btn_start);btn_start.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {jobManager.addJobInBackground(new MJob("1"));jobManager.addJobInBackground(new MJob("2"));jobManager.addJobInBackground(new MJob("3"));jobManager.addJobInBackground(new MJob(""));jobManager.addJobInBackground(new MJob(""));jobManager.addJobInBackground(new MJob(""));}});

4.执行结果
初始化所有的job
这里写图片描述
执行前三个Job的Onadd()方法,同时执行Job1的OnRun()方法。
这里写图片描述
在执行完一个onAdd()方法后接着会调用队列中的第一个的OnAdd()方法。

5.分析
从Log中可以看到这个框架有一套自己的调度算法:
这里写图片描述
事实上,感觉这套框架其实跟Java的线程池差不多,都是来安排队列任务的优先级,调度方案,不过这套框架使用比较简单。
推荐一个Android的线程池博客:http://www.xuanyusong.com/archives/2439

这篇关于Android Priority Job Queue 入门的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1119835

相关文章

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

springboot整合 xxl-job及使用步骤

《springboot整合xxl-job及使用步骤》XXL-JOB是一个分布式任务调度平台,用于解决分布式系统中的任务调度和管理问题,文章详细介绍了XXL-JOB的架构,包括调度中心、执行器和Web... 目录一、xxl-job是什么二、使用步骤1. 下载并运行管理端代码2. 访问管理页面,确认是否启动成功

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

Android WebView的加载超时处理方案

《AndroidWebView的加载超时处理方案》在Android开发中,WebView是一个常用的组件,用于在应用中嵌入网页,然而,当网络状况不佳或页面加载过慢时,用户可能会遇到加载超时的问题,本... 目录引言一、WebView加载超时的原因二、加载超时处理方案1. 使用Handler和Timer进行超

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

数论入门整理(updating)

一、gcd lcm 基础中的基础,一般用来处理计算第一步什么的,分数化简之类。 LL gcd(LL a, LL b) { return b ? gcd(b, a % b) : a; } <pre name="code" class="cpp">LL lcm(LL a, LL b){LL c = gcd(a, b);return a / c * b;} 例题:

Java 创建图形用户界面(GUI)入门指南(Swing库 JFrame 类)概述

概述 基本概念 Java Swing 的架构 Java Swing 是一个为 Java 设计的 GUI 工具包,是 JAVA 基础类的一部分,基于 Java AWT 构建,提供了一系列轻量级、可定制的图形用户界面(GUI)组件。 与 AWT 相比,Swing 提供了许多比 AWT 更好的屏幕显示元素,更加灵活和可定制,具有更好的跨平台性能。 组件和容器 Java Swing 提供了许多

【IPV6从入门到起飞】5-1 IPV6+Home Assistant(搭建基本环境)

【IPV6从入门到起飞】5-1 IPV6+Home Assistant #搭建基本环境 1 背景2 docker下载 hass3 创建容器4 浏览器访问 hass5 手机APP远程访问hass6 更多玩法 1 背景 既然电脑可以IPV6入站,手机流量可以访问IPV6网络的服务,为什么不在电脑搭建Home Assistant(hass),来控制你的设备呢?@智能家居 @万物互联