Do not use ListenerRegistration in DOMSchemaService
[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.stmt.SchemaNodeIdentifier.Absolute;
14
15 /**
16  * Listener which is notified when subscriptions changes and provides set of notification types for which currently
17  * subscriptions are in place.
18  */
19 @Beta
20 public interface DOMNotificationSubscriptionListener extends EventListener {
21     /**
22      * Invoked when notification subscription changed.
23      *
24      * @param currentTypes Set of notification types for which listeners are registered.
25      */
26     void onSubscriptionChanged(Set<Absolute> currentTypes);
27 }