All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.onosproject.store.service.LogicalClockService Maven / Gradle / Ivy

package org.onosproject.store.service;

import org.onosproject.store.Timestamp;

/**
 * Service that issues logical timestamps.
 * 

* The logical timestamps are useful for establishing a total ordering of * arbitrary cluster wide events without relying on a fully synchronized * system clock (wall clock) */ public interface LogicalClockService { /** * Generates a new logical timestamp. * * @return timestamp */ Timestamp getTimestamp(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy