/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.sal.core.spi.data; import javax.annotation.Nonnull; import org.opendaylight.controller.md.sal.dom.api.DOMDataTreeChangeListener; import org.opendaylight.yangtools.concepts.ListenerRegistration; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; /** * Interface implemented by DOMStore implementations which allow registration * of {@link DOMDataTreeChangeListener} instances. */ public interface DOMStoreTreeChangePublisher { /** * Registers a {@link DOMDataTreeChangeListener} to receive * notifications when data changes under a given path in the conceptual data * tree. *

* You are able to register for notifications for any node or subtree * which can be represented using {@link YangInstanceIdentifier}. *

* * You are able to register for data change notifications for a subtree or leaf * even if it does not exist. You will receive notification once that node is * created. *

* If there is any pre-existing data in data tree on path for which you are * registering, you will receive initial data change event, which will * contain all pre-existing data, marked as created. * *

* This method returns a {@link ListenerRegistration} object. To * "unregister" your listener for changes call the {@link ListenerRegistration#close()} * method on this returned object. *

* You MUST explicitly unregister your listener when you no longer want to receive * notifications. This is especially true in OSGi environments, where failure to * do so during bundle shutdown can lead to stale listeners being still registered. * * @param treeId * Data tree identifier of the subtree which should be watched for * changes. * @param listener * Listener instance which is being registered * @return Listener registration object, which may be used to unregister * your listener using {@link ListenerRegistration#close()} to stop * delivery of change events. */ @Nonnull ListenerRegistration registerTreeChangeListener(@Nonnull YangInstanceIdentifier treeId, @Nonnull L listener); }