org.rx.core.cache.DiskCacheItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.core.cache;
import org.rx.core.CachePolicy;
class DiskCacheItem extends CachePolicy {
private static final long serialVersionUID = -7742074465897857966L;
final TV value;
public DiskCacheItem(TV value, CachePolicy policy) {
super(policy);
this.value = value;
}
}