use of org.opendaylight.controller.md.sal.dom.broker.impl.DOMNotificationRouter in project controller by opendaylight.
the class BindingTestContext method startBindingNotificationBroker.
public void startBindingNotificationBroker() {
checkState(this.executor != null);
final DOMNotificationRouter router = DOMNotificationRouter.create(16);
this.domPublishService = router;
this.domListenService = router;
this.publishService = new BindingDOMNotificationPublishServiceAdapter(this.codec, this.domPublishService);
this.listenService = new BindingDOMNotificationServiceAdapter(this.codec, this.domListenService);
this.baNotifyImpl = new HeliumNotificationProviderServiceAdapter(this.publishService, this.listenService);
}
Aggregations