簡單的單線程隊列 -- 工做的時候遇到劣質打印機。給打印機發消息,打印機就會打印,若是在打印機還在打印的時候,就java
再發消息打印,就會出現消息丟失。因此須要給上一個任務一些處理的間隔時間.android
單線程的消息隊列示例數組
- package demo1;
-
- import java.util.LinkedList;
-
- public class Main {
-
-
-
- private static Thread thread;
- private static LinkedList<Runnable> list = new LinkedList<Runnable>();
-
- static int test = 0;
-
- public static void main(String[] args) {
-
- final long time = System.currentTimeMillis();
- for (int i = 0; i < 20; i++) {
-
- tastEvent(new Runnable() {
- public void run() {
-
-
- try {
- Thread.sleep(500);
- } catch (InterruptedException e) {
-
- e.printStackTrace();
- }
-
- System.out
- .println("第"
- + (++test)
- + ("個任務 耗時:" + (System
- .currentTimeMillis() - time)));
- }
-
- });
- }
- }
-
- public static void tastEvent(Runnable r) {
- synchronized (list) {
- list.add(r);
- }
- if (thread == null) {
- thread = new Thread(run);
- thread.start();
- }
-
-
- }
-
- static Runnable run = new Runnable() {
-
- @Override
- public void run() {
-
- synchronized (list) {
-
- while (!list.isEmpty()) {
-
- list.poll().run();
- }
- thread = null;
- }
- }
- };
-
- }

工做的時候遇到很是大的併發的狀況,好比機器1秒只支持1000的併發,可是1秒接收了4000的併發。服務器就會崩掉。緩存
最好將併發放到隊列中,按1000的併發吞吐量來處理,這就是異步隊列應用。安全
一個工程交給一我的作,須要花費3個月,交給2我的作,須要2我的作須要2個月,須要3我的作須要1個月半.....100.人.....1000人,幾年也完不成。服務器
帶上以上道理看待如下的代碼多線程
觀察如下代碼(複製到android工程下運行):最後耗時約1600毫秒 而使用android的AsyncTask類來改寫這段代碼只須要耗時約200 併發
- final long timer=System.currentTimeMillis();
- count=0;
- final Handler h=new Handler();
- for(int k=0;k<100;k++){
- new Thread(){
- @Override
- public void run() {
-
- try {
- Thread.sleep(10);
- } catch (InterruptedException e) {
-
- e.printStackTrace();
- }
- h.post(new Runnable() {
- @Override
- public void run() {
- Toast.makeText(getApplicationContext()," 耗時"+ (System.currentTimeMillis() - timer), 1).show();
- System.err.println("編號"+(count++)+"線程消耗了"+(System.currentTimeMillis()-timer));
- }
- });
- }
- }.start();
可見增長多線程不提升性能,反而由於系統在不一樣的線程之間切換下降效率。所以咱們須要讓線程有序執行任務dom
如下是異步多線程處理隊列的demo異步

- package demo2;
-
- import demo2.Task.OnFinishListen;
-
- public class Main {
-
-
- public static void main(String[] args) {
-
-
- Task.setThreadMaxNum(3);
- for (int i = 0; i < 15; i++) {
- new Task() {
-
- @Override
- public Object obtainData(Task task, Object parameter)
- throws Exception {
-
- Thread.sleep(500);
- return task.taskID;
- }
-
- }
- .setOnFinishListen(new OnFinishListen() {
-
- @Override
- public void onFinish(Task task, Object data) {
-
- System.err.println("任務編號"+task.taskID+"任務完成");
- }
- })
- .setTaskID(i)
- .start();
- }
- }
-
- }
- package demo2;
-
- import java.util.HashMap;
-
- import java.util.Map;
- import java.util.Observable;
- import java.util.Observer;
-
- public abstract class Task<P,R> implements Runnable, Observer,TaskAction<P,R>{
-
-
-
-
-
- public static void setThreadMaxNum(int num) {
- TaskQueue.ThreadMaxNum = num<1?1:num>100?100:num;
- }
-
-
-
- public static enum TaskPriority {
- max, min;
- }
-
-
- protected final static Exception withoutException = new Exception(
- "The state is without");
-
-
- private static HashMap<String, Task> nameTasks;
-
- public static HashMap<String, Task> getNameTask() {
- if (nameTasks == null) {
- nameTasks = new HashMap<String, Task>();
- }
- return nameTasks;
-
- }
-
- public Task<P,R> setSingletonName(String singletonName) {
- this.singletonName = singletonName;
- return this;
- }
-
- public String getSingletonName() {
- return singletonName;
- }
-
- public interface OnStartListen {
- void onStart(Task t);
- }
-
- public interface OnProgressListen {
- void onProgress(Task task, int progress, Object data);
- }
-
- public static interface OnFinishListen<P,R> {
- void onFinish(Task<P,R> task, R data);
- }
-
- public interface OnSystemStartListen {
- void onSystemStart(Task task);
- }
-
- public interface OnSystemFinishListen {
- void OnSystemFinish(Task t, Object data);
- }
-
-
-
-
- protected P parameter;
-
- protected OnStartListen onStartListen;
-
- protected OnProgressListen onProgressListen;
-
- protected OnFinishListen<P,R> onFinishListen;
-
- protected OnSystemStartListen onSystemStartListen;
-
- protected OnSystemFinishListen onSystemFinishListen;
-
-
- protected R result;
-
- protected int taskID = -1;
-
-
- protected String singletonName;
-
-
- protected Object tag;
-
- protected Thread thread;
-
- protected int tryAgainCount = 1;
-
- protected int tryAgainTime = 1000;
-
-
-
-
- protected TaskPriority priority = TaskPriority.min;
-
-
- protected HashMap<String,Object> dataMap;
-
-
- protected Task() {
- }
-
-
-
-
- public static enum TaskStatus {
-
- untreated, wait,error, finsh, running, without;
- }
-
-
- TaskStatus status = TaskStatus.untreated;
-
- public void setWithout() {
- this.status = TaskStatus.without;
- }
-
- public void remove() {
- this.status = TaskStatus.without;
- }
-
- public TaskPriority getPriority() {
- return priority;
- }
-
- public void setPriority(TaskPriority priority) {
- this.priority = priority;
- }
-
-
-
-
- public void start() {
- if (this.priority == null)
- this.priority = TaskPriority.min;
-
- synchronized (TaskQueue.tasks_wait) {
- if (getSingletonName() != null
- && Task.getNameTask().get(this.getSingletonName()) != null) {
- this.setWithout();
- } else {
- Task.getNameTask().put(this.getSingletonName(), this);
-
- }
-
- switch (priority) {
- case min:
- TaskQueue.tasks_wait.remove(this);
- TaskQueue.tasks_wait.add(this);
- break;
- case max:
- TaskQueue.tasks_wait.remove(this);
- TaskQueue.tasks_wait.addFirst(this);
- break;
- default:
- break;
- }
-
- TaskQueue.serivesRun();
- }
-
- }
-
-
- public void start(TaskPriority priority) {
-
-
- this.priority = priority;
- status=TaskStatus.wait;
- start();
- }
-
-
-
- final void threadRun() {
- thread = new Thread(this);
- thread.start();
- }
-
-
- public void shutDownExecute(){};
-
- public R cacheData(P parameter){
- return result;};
-
-
- public final Object Execute() throws Exception {
-
- if (onStartListen != null)
- onStartListen.onStart(this);
-
-
- if (onSystemStartListen != null)
- onSystemStartListen.onSystemStart(this);
-
- status = TaskStatus.running;
-
-
- Exception exception = null;
-
- if ((result = cacheData(parameter)) == null) {
-
-
- for (int i = 0; i < tryAgainCount; i++) {
- try {
-
- if (status == TaskStatus.without) {
- break;
- }
- exception = null;
- result = obtainData(this, parameter);
- System.out.println("result=" + result);
- break;
- } catch (Exception e) {
-
- if ((exception = e) == withoutException) {
- break;
- }
- e.printStackTrace();
- try {
- Thread.sleep(tryAgainTime);
- } catch (Exception e1) {
-
- e1.printStackTrace();
- }
- }
- }
- }
-
- if (exception != null) {
- throw exception;
- }
-
-
-
- if (status != TaskStatus.without) {
-
- if (onFinishListen != null) {
-
- onFinishListen.onFinish(this, result);
- }
- ;
-
-
- }
- if (onSystemFinishListen != null) {
- onSystemFinishListen.OnSystemFinish(this, result);
- }
- status = TaskStatus.finsh;
- return result;
- }
-
- public abstract R obtainData(Task<P,R> task, P parameter)throws Exception;
-
- @Override
- public void update(Observable observable, Object data) {
-
- observable.deleteObserver(this);
-
- this.shutDownExecute();
- this.setWithout();
- if (this.thread != null) {
- this.thread.interrupt();
- }
-
- this.tryAgainCount = 0;
- };
-
- @Override
- public void run() {
-
- try {
- Execute();
- } catch (Exception e) {
- e.printStackTrace();
- status = TaskStatus.error;
-
-
-
-
- if (status != TaskStatus.without) {
-
- if (onFinishListen != null) {
-
- onFinishListen.onFinish(this, result);
- }
-
- }
- if (onSystemFinishListen != null) {
- onSystemFinishListen.OnSystemFinish(this, e);
- }
- }
-
-
- TaskQueue.getRunnable().notifyWaitingTask();
-
- }
-
-
-
- public Object getTag() {
- return tag;
- }
-
- public Task setTag(Object tag) {
- this.tag = tag;
- return this;
- }
-
- public Thread getThread() {
- return thread;
- }
-
- public TaskStatus getStatus() {
- return status;
- }
-
- public Object getParameter() {
- return parameter;
- }
-
- public Task setParameter(P parameter) {
- this.parameter = parameter;
- return this;
- }
-
- public OnStartListen getOnStartListen() {
- return onStartListen;
- }
-
- public Task setOnStartListen(OnStartListen onStartListen) {
- this.onStartListen = onStartListen;
- return this;
- }
-
- public OnProgressListen getOnProgressListen() {
- return onProgressListen;
- }
-
- public Task setOnProgressListen(OnProgressListen onProgressListen) {
- this.onProgressListen = onProgressListen;
- return this;
- }
-
- public OnFinishListen getOnFinishListen() {
- return onFinishListen;
- }
-
- public Task setOnFinishListen(OnFinishListen onFinishListen) {
- this.onFinishListen = onFinishListen;
- return this;
- }
-
- public OnSystemStartListen getOnSystemStartListen() {
- return onSystemStartListen;
- }
-
- public OnSystemFinishListen getOnSystemFinishListen() {
- return onSystemFinishListen;
- }
-
- public void setOnSystemFinishListen(
- OnSystemFinishListen onSystemFinishListen) {
- this.onSystemFinishListen = onSystemFinishListen;
- }
-
-
- public int getTaskID() {
- return taskID;
- }
-
- public Task setTaskID(int taskID) {
- this.taskID = taskID;
- return this;
- }
-
- public Object getResult() {
- return result;
- }
-
- public int getTryAgainCount() {
- return tryAgainCount;
- }
-
- public Task setTryAgainCount(int tryAgainCount) {
- this.tryAgainCount = tryAgainCount;
- return this;
- }
-
- public int getTryAgainTime() {
- return tryAgainTime;
- }
-
- private Task setTryAgainTime(int tryAgainTime) {
- this.tryAgainTime = tryAgainTime;
- return this;
- }
-
-
-
- public Object put(String key,Object value) {
- if(dataMap==null)
- {
- dataMap=new HashMap<String, Object>();
- }
- return dataMap.put(key, value);
- }
- public Object get(String key,Object value) {
- if(dataMap==null)
- {
- dataMap=new HashMap<String, Object>();
- }
- return dataMap.get(key);
- }
-
-
-
- }
Demo代碼下載地址