BUG-869: remove public modifier
[mdsal.git] / code-generator / binding-data-codec / src / main / java / org / opendaylight / yangtools / binding / data / codec / api / BindingNormalizedNodeCachingCodec.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.yangtools.binding.data.codec.api;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.yangtools.yang.binding.DataObject;
12
13 /**
14  * Caching variant of Binding to Normalized Node codec.
15  *
16  * Caching may introduce performance penalty to serialization / deserialization
17  * but may decrease use of heap for repetitive objects.
18  *
19  * @param <T> Binding representtion of data
20  */
21 @Beta
22 public interface BindingNormalizedNodeCachingCodec<T extends DataObject> extends BindingNormalizedNodeCodec<T>, AutoCloseable {
23     /**
24      * Invoking close will invalidate this codec and any of its child
25      * codecs and will invalidate cache.
26      *
27      * Any subsequent calls to this codec will fail with {@link IllegalStateException}
28      * thrown.
29      */
30     @Override
31     void close();
32 }