01: /*
02: * Created on Oct 18, 2004 by pjacob
03: *
04: */
05: package com.whirlycott.cache.policy;
06:
07: import com.whirlycott.cache.CacheMaintenancePolicy;
08: import com.whirlycott.cache.ManagedCache;
09:
10: /**
11: * This policy does nothing and is sometimes useful for debugging.
12: *
13: * @author pjacob
14: */
15: public class NullPolicy implements CacheMaintenancePolicy {
16:
17: public void performMaintenance(ManagedCache cache, int maxSize) {
18: }
19: }
|