代理模式,如上图所示。concreteObject与Proxy都实现IInterface接口,并且Proxy关联concreteObject.
它可以在不修改concreteObject的基础上,利用Proxy完成一些附加功能,做到职责清晰。
并且,它是spring中aop(面向切面编程)实现的基础。
blog宗旨:用图说话....
分类:
其他好文 时间:
2014-10-19 17:11:33
阅读次数:
151
优点:Client端与Server端的DESCRIPTOR可以自定义,不受包名限制
实质中其实是使用底层Binder机制提供的Java层接口 Binder 、IInterface等去实现
客户端中使用transact发起进程间通信请求,服务端会回调onTransact来处理请求
Common Interface:
public interface ITimeCountSer...
分类:
移动开发 时间:
2014-09-10 15:58:21
阅读次数:
280
主控台接口实现了IApplicationContextEx01接口,可以手动执行加载DLL和配置文件,具体使用方法可以参见DEMO(samples\manualLoadLib) IApplicationContextEx01 = interface(IInterface) ['{10009F97-1...
分类:
移动开发 时间:
2014-09-04 01:22:07
阅读次数:
193
Java层的Binder对象模型:
IBinder
IBinder是Binder通信机制中的核心部分(Base interface for a remotable object, the core part of a lightweight remote procedure call mechanism designed for high performance when pe...
分类:
其他好文 时间:
2014-07-03 16:46:20
阅读次数:
204
本文参考《Android系统源代码情景分析》,作者罗升阳
一、架构代码:
~/Android/frameworks/base/core/java/android/os
----IInterface.java (Interface)
----IServiceManager.java (IServiceManager)
-...
分类:
编程语言 时间:
2014-06-16 22:06:54
阅读次数:
281