BUG-3128: Update RPC router concepts
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / DOMNotificationService.java
1 /*
2  * Copyright (c) 2014 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.controller.md.sal.dom.api;
9
10 import java.util.Collection;
11 import javax.annotation.Nonnull;
12 import org.opendaylight.controller.sal.core.api.BrokerService;
13 import org.opendaylight.yangtools.concepts.ListenerRegistration;
14 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
15
16 /**
17  * A {@link DOMService} which allows its users to subscribe to receive
18  * {@link DOMNotification}s.
19  */
20 public interface DOMNotificationService extends DOMService, BrokerService {
21     /**
22      * Register a {@link DOMNotificationListener} to receive a set of notifications. As with
23      * other ListenerRegistration-based interfaces, registering an instance multiple times
24      * results in notifications being delivered for each registration.
25      *
26      * @param listener Notification instance to register
27      * @param types Notification types which should be delivered to the listener. Duplicate
28      *              entries are processed only once, null entries are ignored.
29      * @return Registration handle. Invoking {@link ListenerRegistration#close()}
30      *         will stop the delivery of notifications to the listener
31      * @throws IllegalArgumentException if types is empty or contains an invalid element, such as
32      *         null or a SchemaPath which does not represent a valid {@link DOMNotification} type.
33      * @throws NullPointerException if either of the arguments is null
34      */
35     <T extends DOMNotificationListener> ListenerRegistration<T> registerNotificationListener(@Nonnull T listener, @Nonnull Collection<SchemaPath> types);
36
37     /**
38      * Register a {@link DOMNotificationListener} to receive a set of notifications. As with
39      * other ListenerRegistration-based interfaces, registering an instance multiple times
40      * results in notifications being delivered for each registration.
41      *
42      * @param listener Notification instance to register
43      * @param types Notification types which should be delivered to the listener. Duplicate
44      *              entries are processed only once, null entries are ignored.
45      * @return Registration handle. Invoking {@link ListenerRegistration#close()}
46      *         will stop the delivery of notifications to the listener
47      * @throws IllegalArgumentException if types is empty or contains an invalid element, such as
48      *         null or a SchemaPath which does not represent a valid {@link DOMNotification} type.
49      * @throws NullPointerException if listener is null
50      */
51     // FIXME: Java 8: provide a default implementation of this method.
52     <T extends DOMNotificationListener> ListenerRegistration<T> registerNotificationListener(@Nonnull T listener, SchemaPath... types);
53 }