org.fennec.sdk.model.events.TimestampedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-model Show documentation
Show all versions of java-sdk-model Show documentation
The Fennec Pipeline Java SDK model
The newest version!
package org.fennec.sdk.model.events;
/**
* An event with a timestamp
*/
public interface TimestampedEvent {
/**
* @return the timestamp associated to this event
*/
Long getTimestamp();
}