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

com.litongjava.tio.http.server.annotation.HttpCache Maven / Gradle / Ivy

There is a newer version: 3.7.3.v20241201-RELEASE
Show newest version
package com.litongjava.tio.http.server.annotation;

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

/**
 * @author tanyaowu
 * 2017年6月29日 下午7:52:31
 */
@Target({ ElementType.METHOD/**, ElementType.TYPE*/
})
@Retention(RetentionPolicy.RUNTIME)
public @interface HttpCache {
  int timeToIdleSeconds() default 10;

  int timeToLiveSeconds() default 0;

  String[] params();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy