io.cucumber.plugin.event.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-plugin Show documentation
Show all versions of cucumber-plugin Show documentation
Plugin interface for Cucumber-JVM
package io.cucumber.plugin.event;
import org.apiguardian.api.API;
import java.time.Instant;
@API(status = API.Status.STABLE)
public interface Event {
/**
* Returns instant from epoch.
*
* @return time instant in Instant
* @see Instant#now()
*/
Instant getInstant();
}