![JAR search and dependency download from the Maven repository](/logo.png)
ch.qos.logback.core.util.InvocationGate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package ch.qos.logback.core.util;
// @deprecated This internal logback API is not supported by AEM as a Cloud Service.
@Deprecated(since = "2022-01-27")
public interface InvocationGate {
final long TIME_UNAVAILABLE = -1;
/**
* The caller of this method can decide to skip further work if the returned value is true.
*
* Implementations should be able to give a reasonable answer even if current time date is unavailable.
*
* @param now can be TIME_UNAVAILABLE (-1) to signal that time is not available
* @return if true, caller should skip further work
*/
public abstract boolean isTooSoon(long currentTime);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy