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

io.github.anicolaspp.Hx.commands.CacheCommand Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package io.github.anicolaspp.Hx.commands;

import io.github.anicolaspp.Hx.BreakerSupplier;
import io.github.anicolaspp.Hx.RequestContextInitializer;

class CacheCommand extends SingleCommand implements RequestContextInitializer {
    
    private final String key;
    
    CacheCommand(String key, BreakerSupplier supplier, Setter setter) {
        super(supplier, setter);
        this.key = key;
    
        initializeRequestContext();
    }
    
    @Override
    protected String getCacheKey() {
        return key;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy