1 21 22 package org.apache.derby.iapi.services.cache; 23 24 27 public interface CacheFactory { 28 29 39 40 public CacheManager newCacheManager(CacheableFactory holderFactory, String name, 41 int initialSize, int maximumSize); 42 43 53 54 public CacheManager newSizedCacheManager(CacheableFactory holderFactory, String name, 55 int initialSize, long maximumSize); 56 } 57 58 | Popular Tags |