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

com.ahyakamil.AKCache.AKCacheSetup Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package com.ahyakamil.AKCache;

import com.ahyakamil.AKCache.service.RedisCacheService;
import org.aspectj.lang.ProceedingJoinPoint;

public class AKCacheSetup {
    public static void setupConnection(String host, int port, String username, String password) {
        RedisCacheService.setupConnection(host, port, username, password);
    }

    public static Object setListener(ProceedingJoinPoint pjp) throws Throwable {
        return RedisCacheService.setListener(pjp);
    }

    public static void renewCache(ProceedingJoinPoint pjp) throws Throwable {
        RedisCacheService.renewCache(pjp);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy