BUG-8372: fix abort message confusion
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / actors / dds / DataStoreClient.java
1 /*
2  * Copyright (c) 2016 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.cluster.databroker.actors.dds;
9
10 import com.google.common.annotations.Beta;
11 import javax.annotation.Nonnull;
12 import org.opendaylight.controller.cluster.access.concepts.ClientIdentifier;
13 import org.opendaylight.yangtools.concepts.Identifiable;
14
15 /**
16  * Client interface for interacting with the frontend actor. This interface is the primary access point through
17  * which the DistributedDataStore frontend interacts with backend Shards.
18  *
19  * <p>
20  * Keep this interface as clean as possible, as it needs to be implemented in thread-safe and highly-efficient manner.
21  *
22  * @author Robert Varga
23  */
24 @Beta
25 public interface DataStoreClient extends Identifiable<ClientIdentifier>, AutoCloseable {
26     @Override
27     @Nonnull ClientIdentifier getIdentifier();
28
29     @Override
30     void close();
31
32     /**
33      * Create a new local history. ClientLocalHistory represents the interface exposed to the client.
34      *
35      * @return Client history handle
36      */
37     @Nonnull ClientLocalHistory createLocalHistory();
38
39     /**
40      * Create a new free-standing snapshot.
41      *
42      * @return Client snapshot handle
43      */
44     @Nonnull ClientSnapshot createSnapshot();
45
46     /**
47      * Create a new free-standing transaction.
48      *
49      * @return Client transaction handle
50      */
51     @Nonnull ClientTransaction createTransaction();
52 }