摘要:通道参与者参与者保存请求队列,同时会预创建线程。注启动线程是一项繁重的工作,模式预先创建一批线程,可以重复使用线程,达到资源再利用提升性能的目的。
一、定义
Work Thread模式和Thread-Per-Message模式类似,Thread-Per-Message每次都创建一个新的线程处理请求,而Work Thread模式预先会创建一个线程池(Thread Pool),每次从线程池中取出线程处理请求。
二、模式案例Request请求类:
public class Request { private final String name; private final int number; private static final Random random = new Random(); public Request(String name, int number) { this.name = name; this.number = number; } public void execute() { System.out.println(Thread.currentThread().getName() + " executes " + this); try { Thread.sleep(random.nextInt(1000)); } catch (InterruptedException e) { } } public String toString() { return "[ Request from " + name + " No." + number + " ]"; } }
Client线程类:
Client线程类用来送出请求:
创建Request实例
将这个实例传送给Channel类的putRequest方法
public class ClientThread extends Thread { private final Channel channel; private static final Random random = new Random(); public ClientThread(String name, Channel channel) { super(name); this.channel = channel; } public void run() { try { for (int i = 0; true; i++) { Request request = new Request(getName(), i); channel.putRequest(request); Thread.sleep(random.nextInt(1000)); } } catch (InterruptedException e) { } } }
Worker线程类:
WorkerThread类表示工人线程,工人线程可以执行以下动作:
从Channel实例取出Request实例
调用Request实例的execute方法
public class WorkerThread extends Thread { private final Channel channel; public WorkerThread(String name, Channel channel) { super(name); this.channel = channel; } public void run() { while (true) { Request request = channel.takeRequest(); request.execute(); } } }
Channel类:
/** *Channel类可用来接受、传送工作请求,并保存工人线程。 */ public class Channel { private static final int MAX_REQUEST = 100; // 最大请求数 private final Request[] requestQueue; // 请求队列 private int tail; private int head; private int count; private final WorkerThread[] threadPool; public Channel(int threads) { this.requestQueue = new Request[MAX_REQUEST]; this.head = 0; this.tail = 0; this.count = 0; threadPool = new WorkerThread[threads]; for (int i = 0; i < threadPool.length; i++) { threadPool[i] = new WorkerThread("Worker-" + i, this); } } public void startWorkers() { for (int i = 0; i < threadPool.length; i++) { threadPool[i].start(); } } public synchronized void putRequest(Request request) { while (count >= requestQueue.length) { try { wait(); } catch (InterruptedException e) { } } requestQueue[tail] = request; tail = (tail + 1) % requestQueue.length; count++; notifyAll(); } public synchronized Request takeRequest() { while (count <= 0) { try { wait(); } catch (InterruptedException e) { } } Request request = requestQueue[head]; head = (head + 1) % requestQueue.length; count--; notifyAll(); return request; } }
执行:
public class Main { public static void main(String[] args) { Channel channel = new Channel(5); channel.startWorkers(); new ClientThread("Alice", channel).start(); new ClientThread("Bobby", channel).start(); new ClientThread("Chris", channel).start(); } }三、模式讲解
Work Thread模式的角色如下:
Client(委托人)参与者
Client参与者会创建请求(Request),然后传送给Channel参与者。
Channel(通道)参与者
Channel参与者保存Request请求队列,同时会预创建Worker线程。
Worker(工人)参与者
Worker参与者会从Channel获取Request。
Request(请求)参与者
Worker参与者会从Channel获取Request。
注:启动线程是一项繁重的工作,Worker Thread模式预先创建一批线程,可以重复使用线程,达到资源再利用、提升性能的目的。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/71510.html
摘要:操作完成后,服务会自行停止运行。创建工作队列,用于将逐一传递给实现,这样您就永远不必担心多线程问题。是的消息机制,集中解决线程间通信问题。 2017 Android 面试题 [ 基础与细节 ] 感谢@chuyao抛出的这些问题,平时业务代码写多了,很多基础的东西变得含糊不清了,这次裸辞出来找工作确实没有之前顺利,顺便求上海Android开发的坑。我自己整理了些答案,不对或者不妥的地方请...
摘要:中断线程当线程的方法方法体执行完毕自然终止或在方法中出现没有捕获的异常时意外终止,线程将终止。如果被中断线程被阻塞,就无法检测中断状态,就会产生异常。 多进程与多线程的本质区别在于:每个进程拥有自己的一整套变量,而线程则共享数据。如果需要执行一个比较耗时的任务,应该使用独立的线程。 可以通过实现Runnable接口或继承Thread类来创建独立的线程。 1) 实现Ruannable接口...
摘要:本人邮箱欢迎转载转载请注明网址代码已经全部托管有需要的同学自行下载引言有一个同步助手可以让一个或一些线程等待直到另外一些线程执行完一些操作这就是理论在初始化的时候需要一个参数调用的线程会一直等待直到其他线程调用使清空为通常所有等待中的线程会 本人邮箱: 欢迎转载,转载请注明网址 http://blog.csdn.net/tianshi_kcogithub: https://github...
阅读 746·2019-08-30 15:54
阅读 415·2019-08-30 12:51
阅读 2001·2019-08-29 16:28
阅读 2822·2019-08-29 16:10
阅读 2312·2019-08-29 14:21
阅读 384·2019-08-29 14:09
阅读 2104·2019-08-23 16:13
阅读 1222·2019-08-23 13:59