Merge "Bug 1224, Bug 1221: Added Test case scenarios for Data Change Events."
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / NotificationListener.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
12 import org.opendaylight.yangtools.yang.binding.Notification;
13
14 /**
15  * Interface for a generic listener that is interested in receiving YANG modeled notifications.
16  * This interface acts as a base interface for specific listeners which usually are a type
17  * capture of this interface.
18  *
19  * @param <T> the interested notification type
20  */
21 public interface NotificationListener<T extends Notification> extends EventListener {
22     /**
23      * Invoked to deliver a notification.
24      * <p>
25      * Note that this method may be invoked from a shared thread pool, so implementations SHOULD NOT
26      * perform CPU-intensive operations and MUST NOT invoke any potentially blocking operations.
27      *
28      * @param notification the notification.
29      */
30     void onNotification(T notification);
31 }