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

com.holmos.cache.store.impl.DiskCacheStore Maven / Gradle / Ivy

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

import java.util.Collection;
import java.util.List;
import java.util.Set;

import com.holmos.cache.element.Element;
import com.holmos.cache.exception.CacheException;
import com.holmos.cache.outpolicy.CacheOutPolicy;
import com.holmos.cache.status.CacheStatus;
import com.holmos.cache.store.CacheStore;


	/**
 * 
 * @author: 吴银龙([email protected])
 * @version: 2013-3-19 下午12:56:28 
 */

public class DiskCacheStore implements CacheStore{

	@Override
	public boolean put(Element element) throws CacheException {
			
			return false;
		}

		@Override
		public void putAll(Collection elements) throws CacheException {
			
		}

		@Override
		public Element get(Object key) {
			
			return null;
		}

		@Override
		public Element getQuite(Object key) {
			
			return null;
		}

		@Override
		public Set getAllKeys() {
			
			return null;
		}

		@Override
		public Element remove(Object key) {
			
			return null;
		}

		@Override
		public void removeAll(Collection keys) {
			
		}

		@Override
		public void clear() throws CacheException {
			
		}

		@Override
		public void dispose() {
			
		}

		@Override
		public int getCacheSize() {
			
			return 0;
		}

		@Override
		public int getElementAmount() {
			
			return 0;
		}

		@Override
		public CacheStatus getStatus() {
			
			return null;
		}

		@Override
		public boolean containsKey(Object key) {
			
			return false;
		}

		@Override
		public void flush() {
			
		}

		@Override
		public CacheOutPolicy getOutPolicy() {
			
			return null;
		}

		@Override
		public void setCacheOutPolicy(CacheOutPolicy outPolicy) {
			
		}

		@Override
		public void removeExpireData() {
			
		}

		@Override
		public List getAll(Collection keys) {
			// TODO Auto-generated method stub
			return null;
		}

		@Override
		public boolean update(Element element) {
			// TODO Auto-generated method stub
			return false;
		}

		@Override
		public boolean updateAll(Collection elements) {
			// TODO Auto-generated method stub
			return false;
		}

}