1、在android binder下的server端通过ProcessState、defaultServiceManager获取service manager的代理接口。在client端中,也是通过defaultServiceManager获取到service manager的代理接口。那我想问的是,在client端中调用defaultServiceManager时,是否新建了ProcessState对象,如果新建了,在client端也要打开binder设备?
2、在binder中,为了能够使得client端能够获取server端通过notify发送的消息,在client端是作为本地端,而server端则作为"client"端。在server中是有IPCThreadState进行轮询监测binder驱动,那么在client端中怎么知道server端发送notify消息了?androidbinder