本文整理汇总了Java中com.jcabi.aspects.Cacheable.FlushAfter方法的典型用法代码示例。如果您正苦于以下问题:Java Cacheable.FlushAfter方法的具体用法?Java Cacheable.FlushAfter怎么用?Java Cacheable.FlushAfter使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.jcabi.aspects.Cacheable
的用法示例。
在下文中一共展示了Cacheable.FlushAfter方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: write
import com.jcabi.aspects.Cacheable; //导入方法依赖的package包/类
@Override
@Cacheable.FlushAfter
public void write(final InputStream input, final ObjectMetadata meta)
throws IOException {
this.origin.write(input, meta);
}
示例2: bibitem
import com.jcabi.aspects.Cacheable; //导入方法依赖的package包/类
@Override
@Cacheable.FlushAfter
public void bibitem(final String tex) throws IOException {
this.origin.bibitem(tex);
}
示例3: delete
import com.jcabi.aspects.Cacheable; //导入方法依赖的package包/类
@Override
@Cacheable.FlushAfter
public void delete(final long number) throws IOException {
this.origin.delete(number);
}
示例4: logout
import com.jcabi.aspects.Cacheable; //导入方法依赖的package包/类
/**
* Logout authentication cookie.
*
* <p>Use this cookie to log user out of the system, for example:
*
* <pre> if (you_are_not_allowed()) {
* throw new AuthException(
* Response.seeOther(this.uriInfo().getBaseUri())
* .cookie(this.auth().logout())
* .build()
* );
* }
* </pre>
*
* @return The cookie
*/
@Cacheable.FlushAfter
public NewCookie logout() {
return new CookieBuilder(this.resource.uriInfo().getBaseUri())
.name(AuthInset.AUTH_COOKIE)
.build();
}