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

com.peterphi.std.guice.common.cached.annotation.Cache Maven / Gradle / Ivy

package com.peterphi.std.guice.common.cached.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * When annotated on a zero argument public/protected/package-private method in a Guice-constructed object this annotation will
 * automatically
 * cache the result of the method
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Cache
{
	/**
	 * The time afterwhich cached results will have been considered stale and in need of a refresh
	 *
	 * @return
	 */
	long timeout() default 60 * 1000;

	/**
	 * The name of the (global) cache that will be used (if not specified a global cache name based on the fully qualified class/method
	 * name will be used)
	 *
	 * @return
	 */
	String name() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy