blob: e28cd202c59130086b7b6d1bc244b3353b2f8d5f [file] [log] [blame]
Madan Jampania090a112016-01-18 16:38:17 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Madan Jampania090a112016-01-18 16:38:17 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.store.service;
17
Madan Jampanifa242182016-01-22 13:42:54 -080018import java.util.concurrent.CompletableFuture;
19
Madan Jampania090a112016-01-18 16:38:17 -080020import org.onosproject.core.ApplicationId;
21
22/**
23 * Interface for all distributed primitives.
24 */
25public interface DistributedPrimitive {
26
27 /**
28 * Type of distributed primitive.
29 */
30 public enum Type {
31 /**
32 * Map with strong consistency semantics.
33 */
34 CONSISTENT_MAP,
35
36 /**
37 * Map with eventual consistency semantics.
38 */
39 EVENTUALLY_CONSISTENT_MAP,
40
41 /**
42 * distributed set.
43 */
44 SET,
45
46 /**
47 * atomic counter.
48 */
49 COUNTER,
50
51 /**
52 * Atomic value.
53 */
54 VALUE,
55
56 /**
57 * Distributed queue.
58 */
Madan Jampani4124bc32016-01-30 23:53:56 -080059 QUEUE,
60
61 /**
62 * Leader elector.
63 */
Madan Jampanicadd70b2016-02-08 13:45:43 -080064 LEADER_ELECTOR,
65
66 /**
67 * Transaction Context.
68 */
69 TRANSACTION_CONTEXT
Madan Jampania090a112016-01-18 16:38:17 -080070 }
71
Madan Jampanib98d97e2016-04-01 11:08:25 -070072 static final long DEFAULT_OPERTATION_TIMEOUT_MILLIS = 60000L;
Madan Jampanie17d3282016-02-03 15:30:57 -080073
Madan Jampania090a112016-01-18 16:38:17 -080074 /**
75 * Returns the name of this primitive.
76 * @return name
77 */
78 String name();
79
80 /**
81 * Returns the type of primitive.
82 * @return primitive type
83 */
Madan Jampani39fff102016-02-14 13:17:28 -080084 Type primitiveType();
Madan Jampania090a112016-01-18 16:38:17 -080085
86 /**
87 * Returns the application owning this primitive.
Jian Lidfba7392016-01-22 16:46:58 -080088 * @return application id
Madan Jampania090a112016-01-18 16:38:17 -080089 */
90 default ApplicationId applicationId() {
91 return null;
92 }
Madan Jampanifa242182016-01-22 13:42:54 -080093
94 /**
95 * Purges state associated with this primitive.
96 * <p>
97 * Implementations can override and provide appropriate clean up logic for purging
98 * any state state associated with the primitive. Whether modifications made within the
99 * destroy method have local or global visibility is left unspecified.
Madan Jampani4124bc32016-01-30 23:53:56 -0800100 * @return {@code CompletableFuture} that is completed when the operation completes
Madan Jampanifa242182016-01-22 13:42:54 -0800101 */
102 default CompletableFuture<Void> destroy() {
103 return CompletableFuture.completedFuture(null);
104 }
Madan Jampania090a112016-01-18 16:38:17 -0800105}