blob: 49ef8f7aa02370065b635a01f1f6a4a3ed4ef305 [file] [log] [blame]
Madan Jampanifd26ffb2014-10-13 14:08:55 -07001package org.onlab.onos.net.host;
2
3import org.onlab.onos.store.Timestamp;
4import org.onlab.packet.MacAddress;
5
6/**
7 * Interface for a logical clock service that issues per host timestamps.
8 */
9public interface HostClockService {
10
11 /**
12 * Returns a new timestamp for the specified host mac address.
13 * @param hostMac host MAC address.
14 * @return timestamp.
15 */
16 public Timestamp getTimestamp(MacAddress hostMac);
17}