01: package com.completex.objective.components.ocache;
02:
03: /**
04: * Interface implemented by Thread safe caches.
05: *
06: * @author Gennady Krizhevsky
07: */
08: public interface SafeWrapper extends OdalCacheWrapper {
09: /**
10: * Returns non thread save delegate
11: *
12: * @return non thread save delegate
13: */
14: OdalKeyedCache getDelegate();
15: }
|