use of org.opendaylight.netconf.topology.singleton.messages.netconf.NetconfDataTreeServiceRequest in project netconf by opendaylight.
the class ProxyNetconfDataTreeService method get.
@Override
public ListenableFuture<Optional<NormalizedNode>> get(final YangInstanceIdentifier path, final List<YangInstanceIdentifier> fields) {
final Future<Object> masterActor = Patterns.ask(masterNode, new NetconfDataTreeServiceRequest(), askTimeout);
ProxyNetconfService netconfService = new ProxyNetconfService(id, masterActor, executionContext, askTimeout);
return netconfService.get(path, fields);
}
Aggregations