CacheHolder.java 221 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12
package com.ydl.ydlnet.cache;

class CacheHolder<T> {

    public CacheHolder(T data, long timestamp) {
        this.data = data;
        this.timestamp = timestamp;
    }

    public T data;
    public long timestamp;
}