//registerDataChangeListener(접근하고자 하는 데이터 트리 종류(config or operational), 데이터 트리 PATH(InstanceIdentifier로 정의),실행될 객체, 변화감지 범위); this.data_change_listener=this.db.registerDataChangeListener(LogicalDatastoreType.CONFIGURATION,path,helloWorldImpl,DataChangeScope.SUBTREE); this.helloService=session.addRpcImplementation(HelloService.class,helloWorldImpl); }
다음으론 기존 HelloWorldImpl.java 에 DataChangeListener를 implements 해주고 onDataChanged 를 구현한다.