搜索资源列表
ThreadPool2
- 一个简单实用的线程池 java写的一个线程池-a simple ,applied thread pool a thread pool written by java
Threadpooldem12
- 一个关于线程池的文档-a pool of threads Documents
ThreadPoolOFWindows2000XP
- WINDOWS2000/XP下的线程池的使用,让你对其有一个很深了解。-WINDOWS2000/XP the use of the thread pool, so that you may have a deep understanding.
xianchengchi
- 构建线程池,提高线程访问速度,非常经典,非常好的原代码-thread pool, improving threaded performance, very classic, very good original code
sea-0.4.0
- sea是一个基于seda模式的实现。这个设计模式将系统分为很多stage。每个stage分布不同的任务(基于线程池)。通过任务流的方式提高系统的效率。
thteads
- 是JAVA的线程那一节学习的很好的借鉴资料,是实现线程池的
javasocket
- 多线程Java Socket编程示例,其中采用Java 5的ExecutorService来进行线程池的方式实现多线程,模拟客户端多用户向同一服务器端发送请求.
JavaThreadPool
- 一个用Java编写的调度线程池内的线程的演示程序.-a Java prepared by the thread pool scheduling threads demonstration program.
xian
- 线程池用一个双向链表来表示,池中的元素是处于休眠状态的工作线程。ThreadPool类大部分工作都是来维护这个双向链表,当有新的请求到达时,先从表头摘取一个工作线程,将其唤醒转入工作状态。如果线程池为空,则创建一个新的工作线程。-thread pool with a two-way link list said to a pool element is in a state of dormancy threads. ThreadPool class most of the work to mai
java-TCP
- 1.实现一个采用用户自定义协议的文件传输服务器FileServer和客户FileClient。 2. 编写一服务器程序和客户程序,要求客户每输入一行数据,服务器接收后加上echo:回送给客户程序,要求服务器程序采用多线程方式和线程池为每个客户分配一个线程。-1. The realization of a use of user-defined file transfer protocol server FileServer and customer FileClient. 2. Write
wangluobianchengshiyan(4)
- 1.实现一个采用用户自定义协议的文件传输服务器FileServer和客户FileClient。当FileClient发送请求“GET xxx.xxx”时,FileServer就把xxx.xxx文件发送给FileClient,FileClient把该文件保存到客户端的本地文件系统中,当FileClient发送请求“PUT xxx.xxx”时,FileServer就做好接收xxx.xxx文件的准备,FileClient接着发送xxx.xxx文件的内容,FileServer把接收到的文件内容保存到服务
myServer
- java socket编程,类似tomcat功能,支持线程池,并行,以及访问服务器下的html文件-java socket programming, tomcat similar functionality, support for the thread pool, in parallel, as well as access the server under the html file
Pool
- 些代码为JAVA的一个数据库接的线程池. 能充分利用数据库接资源.-POOL
threadpool
- 线程池的开发,创建一个池来提高资源利用率,提高速率-the development of thread pool
threadpool
- Java线程池完整代码,已经用于实际的项目中,性能稳定。
smsSend
- java实现线程池,通过最简单的调用方法来实现配置文件中的配置,从而轻松实现多线程-java thread pool implementation, through the most simple way to achieve the configuration file called the configuration, and thus easy to achieve multi-threaded
proxool-0.9.1
- 数据库连接池类。大家下载了可以学习下,里面大多使用了线程池的方式。-Database connection pool class. We downloaded can learn, under which most of the way using the thread pool.
thread
- 创建大小为1的固定线程池,同时执行任务(task)的只有一个,其它的(任务)task都放在LinkedBlockingQueue中排队等待执行。(Create a fixed thread pool of size 1, while only one task (task) is executed, and the other tasks (task) are queued in LinkedBlockingQueue for execution.)
JAVA线程池实验报告.docx
- 用JAVA实现一个线程池,线程池在初始状态下没有任何工作线程。当工作队列中有未执行的任务时,分一下两种情况处理: . 如果线程池中工作线程数目为MAX_SIZE,那就什么也不做; . 如果线程池中工作线程数目小于MAX_SIZE,那么创建一个工作线程,使它执行新任务。 对于线程池中空闲的工作线程,如果其闲置时间超过TIMEOUT秒,就销毁该线程。(A thread pool is implemented with JAVA, and the thread pool has no worki
线程-Java
- 实现多线程 互斥锁 线程池 线程同步利用Java实现(Achieve multi-threaded mutex sewing thread pool)