blob: 2ee4434d7f781cd19f59f276764ac67820e82484 [file] [log] [blame]
Jonathan Hart74c83132015-02-02 18:37:57 -08001/*
2 * Copyright 2015 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.intent.impl;
17
Brian O'Connor5eb77c82015-03-02 18:09:39 -080018import org.onosproject.cluster.NodeId;
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080019import org.onosproject.net.intent.Key;
20
Jonathan Hart74c83132015-02-02 18:37:57 -080021/**
22 * Service for interacting with the partition-to-instance assignments.
23 */
24public interface PartitionService {
25
26 /**
27 * Returns whether the given intent key is in a partition owned by this
28 * instance or not.
29 *
30 * @param intentKey intent key to query
31 * @return true if the key is owned by this instance, otherwise false
32 */
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080033 boolean isMine(Key intentKey);
Jonathan Hart74c83132015-02-02 18:37:57 -080034
Brian O'Connor5eb77c82015-03-02 18:09:39 -080035 /**
36 * Returns the leader for a particular key.
37 *
38 * @param intentKey intent key to query
39 * @return the leader node
40 */
41 NodeId getLeader(Key intentKey);
42
Jonathan Hart74c83132015-02-02 18:37:57 -080043 // TODO add API for rebalancing partitions
44}