b94695b83d437e31194e1e862da479b787ba8d80
[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.yang.binding.Notification;
16
17 public interface NotificationProviderService extends NotificationService, NotificationPublishService<Notification> {
18     /**
19      * Publishes a notification.
20      *
21      * @param Notification
22      *            notification to publish.
23      *
24      */
25     @Override
26     void publish(Notification notification);
27
28     /**
29      * Publishes a notification, listener calls are done in provided executor.
30      *
31      */
32     @Override
33     void publish(Notification notification, ExecutorService service);
34
35     ListenerRegistration<NotificationInterestListener> registerInterestListener(
36             NotificationInterestListener interestListener);
37
38     public interface NotificationInterestListener extends EventListener {
39
40         void onNotificationSubscribtion(Class<? extends Notification> notificationType);
41     }
42 }