没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
http://gee.cs.oswego.edu
Scalable IO in Java
Doug Lea
State University of New York at Oswego
dl@cs.oswego.edu
http://gee.cs.oswego.edu
http://gee.cs.oswego.edu
Outline
"
Scalable network services
"
Event-driven processing
"
Reactor pattern
Basic version
Multithreaded versions
Other variants
"
Walkthrough of java.nio nonblocking IO APIs
http://gee.cs.oswego.edu
Network Services
"
Web services, Distributed Objects, etc
"
Most have same basic structure:
Read request
Decode request
Process service
Encode reply
Send reply
"
But differ in nature and cost of each step
XML parsing, File transfer, Web page
generation, computational services, ...
http://gee.cs.oswego.edu
Classic Service Designs
client
client
client
Server
read
decode
compute
encode
send
read
decode
compute
encode
send
handler
handler
read
decode
compute
encode
send
handler
Each handler may be started in its own thread
http://gee.cs.oswego.edu
Classic ServerSocket Loop
class Server implements Runnable {
public void run() {
try {
ServerSocket ss = new ServerSocket(PORT);
while (!Thread.interrupted())
new Thread(new Handler(ss.accept())).start();
// or, single-threaded, or a thread pool
} catch (IOException ex) { /* ... */ }
}
static class Handler implements Runnable {
final Socket socket;
Handler(Socket s) { socket = s; }
public void run() {
try {
byte[] input = new byte[MAX_INPUT];
socket.getInputStream().read(input);
byte[] output = process(input);
socket.getOutputStream().write(output);
} catch (IOException ex) { /* ... */ }
}
private byte[] process(byte[] cmd) { /* ... */ }
}
}
Note: most exception handling elided from code examples
剩余38页未读,继续阅读
资源评论
知识铺
- 粉丝: 1324
- 资源: 28
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于JAVA+SpringBoot+Vue+MySQL的汽车服务管理系统 源码+数据库+论文(高分毕业设计).zip
- weixin238基于微信小程序的校园二手交易平台ssm.rar
- springboot559基于Spring与Vue的疫情居家检测管理系统的设计与实现代码pf.rar
- 计算机网络相关学习资源-markdown技术材料.zip
- ios-Object-C-弹出日期选择器
- 基于JAVA+SpringBoot+Vue+MySQL的视频及游戏管理平台 源码+数据库(高分毕业设计).zip
- weixin203婚庆摄影小程序ssm.rar
- 数据分析相关的教程、工具、项目资源-markdown技术材料.zip
- ssm631在线视频网站开发jsp.rar
- springboot基于Web的铁路订票管理系统w8iq4.zip
- 大学生网页模板 表格与输入框
- 基于JAVA+SpringBoot+Vue+MySQL的宿舍管理系统 源码+数据库+论文(高分毕业设计).zip
- 机器人开发相关资源-markdown技术材料.zip
- 使用C语言实现文件的打开读取写入和关闭操作.zip
- weixin195基于微信平台的购物商城小程序开发ssm.rar
- 动漫评论网站.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功