blob: f69a1d397220d942f982c7bc9c51642cee507eb2 [file] [log] [blame]
Madan Jampania090a112016-01-18 16:38:17 -08001/*
2 * Copyright 2015-2016 Open Networking Laboratory
3 *
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 */
64 LEADER_ELECTOR
Madan Jampania090a112016-01-18 16:38:17 -080065 }
66
67 /**
68 * Returns the name of this primitive.
69 * @return name
70 */
71 String name();
72
73 /**
74 * Returns the type of primitive.
75 * @return primitive type
76 */
77 Type type();
78
79 /**
80 * Returns the application owning this primitive.
Jian Lidfba7392016-01-22 16:46:58 -080081 * @return application id
Madan Jampania090a112016-01-18 16:38:17 -080082 */
83 default ApplicationId applicationId() {
84 return null;
85 }
Madan Jampanifa242182016-01-22 13:42:54 -080086
87 /**
88 * Purges state associated with this primitive.
89 * <p>
90 * Implementations can override and provide appropriate clean up logic for purging
91 * any state state associated with the primitive. Whether modifications made within the
92 * destroy method have local or global visibility is left unspecified.
Madan Jampani4124bc32016-01-30 23:53:56 -080093 * @return {@code CompletableFuture} that is completed when the operation completes
Madan Jampanifa242182016-01-22 13:42:54 -080094 */
95 default CompletableFuture<Void> destroy() {
96 return CompletableFuture.completedFuture(null);
97 }
Madan Jampania090a112016-01-18 16:38:17 -080098}