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

com.tenduke.events.api.model.data.TimeFields Maven / Gradle / Ivy

Go to download

Objects and interfaces describing data communicated in the 10Duke Event Data system API

There is a newer version: 1.9.0
Show newest version
package com.tenduke.events.api.model.data;

import com.fasterxml.jackson.annotation.JsonInclude;

/**
 * Event data fields related to event time.
 * @author jarkko
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface TimeFields {

    /**
     * Gets timestamp of when the event has actually happened in the client system.
     * @return The event timestamp in milliseconds since the Epoch (1970-01-01T00:00:00Z).
     */
    Long getEventTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy