blob: 799f723a146fb85b33e0255062bfb7344fb463c8 [file] [log] [blame]
Madan Jampani3e033bd2015-04-08 13:03:49 -07001package org.onosproject.store.service;
2
3import org.onosproject.store.Timestamp;
4
5/**
6 * Service that issues logical timestamps.
7 * <p>
8 * The logical timestamps are useful for establishing a total ordering of
9 * arbitrary cluster wide events without relying on a fully synchronized
10 * system clock (wall clock)
11 */
12public interface LogicalClockService {
13
14 /**
15 * Generates a new logical timestamp.
16 *
17 * @return timestamp
18 */
19 Timestamp getTimestamp();
20}