Merge "BUG 2799: SPI for EventSources"
[controller.git] / opendaylight / md-sal / messagebus-spi / src / main / java / org / opendaylight / controller / messagebus / spi / EventSourceRegistration.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.controller.messagebus.spi;
9
10 import org.opendaylight.yangtools.concepts.ObjectRegistration;
11
12 /**
13  * Instance of EventSourceRegistration is returned by {@link EventSourceRegistry#registerEventSource(EventSource)}
14  * and it is used to unregister EventSource.
15  *
16  */
17 public interface EventSourceRegistration <T extends EventSource> extends ObjectRegistration<T>{
18
19     @Override
20     public void close();
21
22 }