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

org.brutusin.demo.http.ExpiringCachedAction Maven / Gradle / Ivy

The newest version!
package org.brutusin.demo.http;

import org.brutusin.rpc.http.Cacheable;
import org.brutusin.rpc.http.CachingInfo;
import org.brutusin.rpc.http.SafeAction;

public class ExpiringCachedAction extends SafeAction {

    private static final String MESSAGE = "This response is cacheable (shared caches) for one day, and can be stored in persistent memory";

    @Override
    public Cacheable execute(Void input) throws Exception {
        return new Cacheable(MESSAGE, new CachingInfo(CachingInfo.DAY, true, true));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy