io.continual.onap.services.mrCommon.Clock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of continualOnapMr Show documentation
Show all versions of continualOnapMr Show documentation
A client for ONAP Message Router API.
package io.continual.onap.services.mrCommon;
/**
* A clock for timing
*/
public interface Clock
{
/**
* Get the current time in epoch millis.
* @return the current time
*/
long nowMs ();
}