blob: 011f2a8a76f4365c2ea90c9a21efb266a09113d2 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 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 */
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -070016package org.onlab.onos.net.device;
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070017
Yuta HIGUCHI80912e62014-10-12 00:15:47 -070018import org.onlab.onos.mastership.MastershipTerm;
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070019import org.onlab.onos.net.DeviceId;
20
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070021/**
22* Interface for feeding term information to a logical clock service
23* that vends per device timestamps.
24*/
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -070025public interface DeviceClockProviderService {
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070026
27 /**
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -070028 * Checks if this service can issue Timestamp for specified device.
29 *
30 * @param deviceId device identifier.
31 * @return true if timestamp can be issued for specified device
32 */
33 public boolean isTimestampAvailable(DeviceId deviceId);
34
35 /**
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070036 * Updates the mastership term for the specified deviceId.
Yuta HIGUCHI24b2e2a2014-10-07 15:53:57 -070037 *
Yuta HIGUCHI68b34942014-10-02 23:23:21 -070038 * @param deviceId device identifier.
39 * @param term mastership term.
40 */
41 public void setMastershipTerm(DeviceId deviceId, MastershipTerm term);
42}