7725829fc23f561544ac25708d360175b2a8274b
[yangtools.git] / concepts / src / main / java / org / opendaylight / yangtools / concepts / ObjectRegistration.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.yangtools.concepts;
9
10 /**
11  * Class representing a registration of an object. Such a registration is
12  * a proper resource and should be cleaned up when no longer required, so
13  * references to the object can be removed. This mechanism lies above the
14  * usual Java reference mechanism, as the entity where the object is
15  * registered may reside outside of the Java Virtual Machine.
16  */
17 public interface ObjectRegistration<T> extends Registration<T> {
18     /**
19      * Return the object instance.
20      *
21      * @return Registered object.
22      */
23     @Override
24     T getInstance();
25
26     /**
27      * Unregisters the object. This operation is required not to invoke
28      * blocking operations. Implementations which require interaction
29      * with outside world must provide guarantees that any work is done
30      * behind the scenes and the unregistration process looks as if it
31      * has already succeeded once this method returns.
32      */
33     @Override
34     void close() throws Exception;
35 }