blob: 59546c3fc3160867f058dbb6fa6d747973687617 [file] [log] [blame]
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -07001package org.onlab.onos.net.device;
Madan Jampani61056bc2014-09-27 09:07:26 -07002
Madan Jampani61056bc2014-09-27 09:07:26 -07003import org.onlab.onos.net.DeviceId;
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -07004import org.onlab.onos.store.Timestamp;
Madan Jampani61056bc2014-09-27 09:07:26 -07005
6/**
7 * Interface for a logical clock service that vends per device timestamps.
8 */
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -07009public interface DeviceClockService {
Yuta HIGUCHI2e963892014-09-27 13:00:39 -070010
Madan Jampani61056bc2014-09-27 09:07:26 -070011 /**
12 * Returns a new timestamp for the specified deviceId.
13 * @param deviceId device identifier.
14 * @return timestamp.
15 */
16 public Timestamp getTimestamp(DeviceId deviceId);
Madan Jampani61056bc2014-09-27 09:07:26 -070017}