搜索资源列表
线程池使用框架Java写的
- 线程池使用框架Java写的
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
simpleThreadPool
- 简单线程池的实现方法,包含一个主控线程池类ThreadPool和一个工作线程WorkThread-simple thread pool method, including a master class ThreadPool thread pool, and a work-threaded WorkThread
ThreadPool2
- 一个简单实用的线程池 java写的一个线程池-a simple ,applied thread pool a thread pool written by java
Pooler
- 关于线程池的实现! 包括C++,delphi,Java对线程的实现! 保证服务器能够良好的工作!- About line Cheng Chi realization! Including C, delphi, Java to line regulation realization! Guarantees the server to be able the good work!
xianchengchi
- 构建线程池,提高线程访问速度,非常经典,非常好的原代码-thread pool, improving threaded performance, very classic, very good original code
LikeJavaThreads_src
- 类似java线程池的源代码,解决了c++没有线程池的缺憾。-Java thread pool similar to the source code to solve the c there is no thread pool defect.
thteads
- 是JAVA的线程那一节学习的很好的借鉴资料,是实现线程池的-JAVA thread is the section to learn useful reference information, is to achieve thread pool
jdbc_connectionpool_instance
- 文档主要给出了java中线程池的一个例子,虽然线程池一般由服务器管理,但对一个高级java设计人员,还是有必要了解的。-Java files in the main are given an example of thread pool, although the thread pool managed by the server in general, but for a senior java designers, or there
javasocket
- 多线程Java Socket编程示例,其中采用Java 5的ExecutorService来进行线程池的方式实现多线程,模拟客户端多用户向同一服务器端发送请求. -Multi-threaded Java Socket programming examples, including the use of Java 5 to the thread pool ExecutorService way to achieve multi-thr
A6
- java多线程设计模式中的线程池设计模式源码-java multi-threaded design of the thread pool design pattern source
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
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 exec
JAVA线程池实验报告.docx
- 用JAVA实现一个线程池,线程池在初始状态下没有任何工作线程。当工作队列中有未执行的任务时,分一下两种情况处理: . 如果线程池中工作线程数目为MAX_SIZE,那就什么也不做; . 如果线程池中工作线程数目小于MAX_SIZE,那么创建一个工作线程,使它执行新任务。 对于线程池中空闲的工作线程,如果其闲置时间超过TIMEOUT秒,就销毁该线程。(A thread pool is implemented with JAVA, an
线程-Java
- 实现多线程 互斥锁 线程池 线程同步利用Java实现(Achieve multi-threaded mutex sewing thread pool)
ThreadPoolTest4
- 以代码加注释的形式实现的Java线程池实例(Java thread pool instance implemented as code plus comment)