Changed model versions to dependencies
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / NotificationProviderService.java
1 /*
2  * Copyright (c) 2013 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.sal.binding.api;
9
10 import java.util.EventListener;
11 import java.util.concurrent.ExecutorService;
12
13 import org.opendaylight.controller.md.sal.common.api.notify.NotificationPublishService;
14 import org.opendaylight.yangtools.concepts.ListenerRegistration;
15 import org.opendaylight.yangtools.concepts.Registration;
16 import org.opendaylight.yangtools.yang.binding.Notification;
17
18 public interface NotificationProviderService extends NotificationService, NotificationPublishService<Notification> {
19
20
21     /**
22      * Deprecated. Use {@link #publish(Notification)}.
23      * 
24      * @param notification
25      */
26     @Deprecated
27     void notify(Notification notification);
28
29     /**
30      * Deprecated. Use {@link #publish(Notification,ExecutorService)}.
31      * 
32      * @param notification
33      */
34     @Deprecated
35     void notify(Notification notification, ExecutorService service);
36
37     /**
38      * Publishes a notification.
39      * 
40      * @param Notification
41      *            notification to publish.
42      * 
43      */
44     @Override
45     void publish(Notification notification);
46
47     /**
48      * Publishes a notification, listener calls are done in provided executor.
49      * 
50      */
51     @Override
52     void publish(Notification notification, ExecutorService service);
53
54     ListenerRegistration<NotificationInterestListener> registerInterestListener(
55             NotificationInterestListener interestListener);
56
57     public interface NotificationInterestListener extends EventListener {
58
59         void onNotificationSubscribtion(Class<? extends Notification> notificationType);
60     }
61 }