org.brutusin.demo.http.ConditionalCachedAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rpc-demo Show documentation
Show all versions of rpc-demo Show documentation
Demo app for brutusin:rcp
The newest version!
package org.brutusin.demo.http;
import org.brutusin.rpc.http.Cacheable;
import org.brutusin.rpc.http.SafeAction;
public class ConditionalCachedAction extends SafeAction {
private static final String MESSAGE = "This response is conditionally cacheable";
@Override
public Cacheable execute(Void input) throws Exception {
return Cacheable.conditionally(MESSAGE);
}
}