文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
1.13 代理模式
代理模式(Proxy Pattern) 允许利用一种对象来伪装并替代另一些对象。通常在使用中,代理对象并不会被觉察出来。该模式非常适用于那些真实对象难以创建并使用的环境,比如当网络连接、内存中的巨型对象,或者文件、数据库以及其他一些很难或基本无法复制的资源。
1.13.1 范例
该模式常见的应用环境是涉及到一个不同 JVM 的远程对象。下面的范例是网络连接中的客户端代码,它创建的代理通过 Socket 连接与服务器对象进行通信:
class AccumulatorProxy {
def accumulate(args) {
def result
def s = new Socket("localhost", 54321)
s.withObjectStreams { ois, oos ->
oos << args
result = ois.readObject()
}
s.close()
return result
}
}
println new AccumulatorProxy().accumulate([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
// => 55
而服务器代码可能如下所示(首先启动它):
class Accumulator {
def accumulate(args) {
args.inject(0) { total, arg -> total += arg }
}
}
def port = 54321
def accumulator = new Accumulator()
def server = new ServerSocket(port)
println "Starting server on port $port"
while(true) {
server.accept() { socket ->
socket.withObjectStreams { ois, oos ->
def args = ois.readObject()
oos << accumulator.accumulate(args)
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论