blob: e70858837823beffa8f21f45597c27a3047077fa [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cluster;
tom73d6d1e2014-09-17 20:08:01 -070017
18import java.util.Set;
19
Madan Jampani7d2fab22015-03-18 17:21:57 -070020import org.joda.time.DateTime;
21
tom73d6d1e2014-09-17 20:08:01 -070022/**
tome4729872014-09-23 00:37:37 -070023 * Service for obtaining information about the individual nodes within
tom73d6d1e2014-09-17 20:08:01 -070024 * the controller cluster.
25 */
26public interface ClusterService {
27
28 /**
tome4729872014-09-23 00:37:37 -070029 * Returns the local controller node.
30 *
31 * @return local controller node
32 */
33 ControllerNode getLocalNode();
34
35 /**
tom73d6d1e2014-09-17 20:08:01 -070036 * Returns the set of current cluster members.
37 *
38 * @return set of cluster members
39 */
tome4729872014-09-23 00:37:37 -070040 Set<ControllerNode> getNodes();
tom73d6d1e2014-09-17 20:08:01 -070041
42 /**
tome4729872014-09-23 00:37:37 -070043 * Returns the specified controller node.
tom73d6d1e2014-09-17 20:08:01 -070044 *
tome4729872014-09-23 00:37:37 -070045 * @param nodeId controller node identifier
46 * @return controller node
47 */
48 ControllerNode getNode(NodeId nodeId);
49
50 /**
51 * Returns the availability state of the specified controller node.
52 *
53 * @param nodeId controller node identifier
tom73d6d1e2014-09-17 20:08:01 -070054 * @return availability state
55 */
tome4729872014-09-23 00:37:37 -070056 ControllerNode.State getState(NodeId nodeId);
tom73d6d1e2014-09-17 20:08:01 -070057
tomfc9a4ff2014-09-22 18:22:47 -070058 /**
Madan Jampani7d2fab22015-03-18 17:21:57 -070059 * Returns the system time when the availability state was last updated.
60 *
61 * @param nodeId controller node identifier
62 * @return system time when the availability state was last updated.
63 */
64 DateTime getLastUpdated(NodeId nodeId);
65
66 /**
tomfc9a4ff2014-09-22 18:22:47 -070067 * Adds the specified cluster event listener.
68 *
69 * @param listener the cluster listener
70 */
71 void addListener(ClusterEventListener listener);
tom73d6d1e2014-09-17 20:08:01 -070072
tomfc9a4ff2014-09-22 18:22:47 -070073 /**
74 * Removes the specified cluster event listener.
75 *
76 * @param listener the cluster listener
77 */
78 void removeListener(ClusterEventListener listener);
tom73d6d1e2014-09-17 20:08:01 -070079
80}