Fix SnapshotBackedWriteTransaction error message
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / DOMNotificationSubscriptionListener.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.dom.spi;
9
10 import com.google.common.annotations.Beta;
11 import java.util.EventListener;
12 import java.util.Set;
13 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
14
15 /**
16  * Listener which is notified when subscriptions changes and
17  * provides set of notification types for which currently
18  * subscriptions are in place.
19  */
20 @Beta
21 public interface DOMNotificationSubscriptionListener extends EventListener {
22
23     /**
24      * Invoked when notification subscription changed.
25      *
26      * @param currentTypes Set of notification types for which listeners are registered.
27      */
28     void onSubscriptionChanged(Set<SchemaPath> currentTypes);
29 }