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

com.holmos.cache.systemtask.HolmosGetCacheStateTask Maven / Gradle / Ivy

There is a newer version: 1.0.2u10
Show newest version
package com.holmos.cache.systemtask;

import com.holmos.cache.cache.Cache;
import com.holmos.cache.status.CacheStatus;

/**
 * 不间断的获取缓存状态的任务
 * 
 * @author 吴银龙([email protected])
 * 
 * */
public class HolmosGetCacheStateTask extends HolmosAbstractTask{

	private CacheStatus status;
	private Cache cache;
	
	public HolmosGetCacheStateTask(Cache cache){
		this.cache=cache;
	}
	
	@Override
	protected void doRun() {
		
	}

	public CacheStatus getState() {
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy