com.litongjava.tio.utils.cache.j2cache.J2CacheFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.cache.j2cache;
import java.util.Map;
import com.litongjava.tio.utils.cache.AbsCache;
import com.litongjava.tio.utils.cache.CacheFactory;
import com.litongjava.tio.utils.cache.CacheName;
import com.litongjava.tio.utils.cache.RemovalListenerWrapper;
public class J2CacheFactory implements CacheFactory{
@Override
public AbsCache register(String cacheName, Long timeToLiveSeconds, Long timeToIdleSeconds) {
// TODO Auto-generated method stub
return null;
}
@Override
public AbsCache register(String cacheName, Long timeToLiveSeconds, Long timeToIdleSeconds,
RemovalListenerWrapper removalListenerWrapper) {
// TODO Auto-generated method stub
return null;
}
@Override
public AbsCache getCache(String cacheName, boolean skipNull) {
// TODO Auto-generated method stub
return null;
}
@Override
public J2Cache getCache(String cacheName) {
// TODO Auto-generated method stub
return null;
}
@Override
public Map getMap() {
// TODO Auto-generated method stub
return null;
}
@Override
public AbsCache register(CacheName cacheName) {
// TODO Auto-generated method stub
return null;
}
}