C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/net/cache/WrapperNamedCache.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_WRAPPER_NAMED_CACHE_HPP
00008 #define COH_WRAPPER_NAMED_CACHE_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/net/CacheService.hpp"
00013 #include "coherence/net/NamedCache.hpp"
00014 #include "coherence/util/Comparator.hpp"
00015 #include "coherence/util/Filter.hpp"
00016 #include "coherence/util/MapListener.hpp"
00017 #include "coherence/util/Set.hpp"
00018 #include "coherence/util/ValueExtractor.hpp"
00019 
00020 COH_OPEN_NAMESPACE3(coherence,net,cache)
00021 
00022 using coherence::net::CacheService;
00023 using coherence::net::NamedCache;
00024 using coherence::util::Collection;
00025 using coherence::util::Comparator;
00026 using coherence::util::Filter;
00027 using coherence::util::MapListener;
00028 using coherence::util::Set;
00029 using coherence::util::ValueExtractor;
00030 
00031 /**
00032  * A wrapper for the given NamedCache.
00033  *
00034  * @author lh  2012.06.18
00035  * @since Coherence 12.1.2
00036  */
00037 class COH_EXPORT WrapperNamedCache
00038     : public class_spec<WrapperNamedCache,
00039         extends<Object>,
00040         implements<NamedCache> >
00041     {
00042     friend class factory<WrapperNamedCache>;
00043 
00044     // ----- constructors ---------------------------------------------------
00045 
00046     protected:
00047         /**
00048          * Create a new WrapperNamedCache.
00049          *
00050          * @param hCache  the NamedCache that will be wrapped by this 
00051          *                WrapperNamedCache
00052          */
00053         WrapperNamedCache(NamedCache::Handle hCache);
00054 
00055     // ----- Map interface --------------------------------------------------
00056 
00057     public:
00058         /**
00059          * {@inheritDoc}
00060          */
00061         virtual size32_t size() const;
00062 
00063         /**
00064          * {@inheritDoc}
00065          */
00066         virtual bool isEmpty() const;
00067 
00068         /**
00069          * {@inheritDoc}
00070          */
00071         virtual bool containsKey(Object::View vKey) const;
00072 
00073         /**
00074          * {@inheritDoc}
00075          */
00076         virtual bool containsValue(Object::View vValue) const;
00077 
00078         /**
00079          * {@inheritDoc}
00080          */
00081         virtual Object::Holder get(Object::View vKey) const;
00082 
00083         /**
00084          * {@inheritDoc}
00085          */
00086         virtual Object::Holder get(Object::View vKey);
00087 
00088         /**
00089          * {@inheritDoc}
00090          */
00091         virtual Object::Holder put(Object::View vKey, Object::Holder ohValue);
00092 
00093         /**
00094          * {@inheritDoc}
00095          */
00096         virtual Object::Holder remove(Object::View vKey);
00097         using Map::remove;
00098 
00099         /**
00100          * {@inheritDoc}
00101          */
00102         virtual void putAll(Map::View vMap);
00103 
00104         /**
00105          * {@inheritDoc}
00106          */
00107         virtual void clear();
00108 
00109         /**
00110          * {@inheritDoc}
00111          */
00112         virtual Set::View keySet() const;
00113 
00114         /**
00115          * {@inheritDoc}
00116          */
00117         virtual Set::Handle keySet();
00118 
00119         /**
00120          * {@inheritDoc}
00121          */
00122         virtual Collection::View values() const;
00123 
00124         /**
00125          * {@inheritDoc}
00126          */
00127         virtual Collection::Handle values();
00128 
00129         /**
00130          * {@inheritDoc}
00131          */
00132         virtual Set::View entrySet() const;
00133 
00134         /**
00135          * {@inheritDoc}
00136          */
00137         virtual Set::Handle entrySet();
00138 
00139     // ----- CacheMap interface ---------------------------------------------
00140 
00141     public:
00142         /**
00143          * {@inheritDoc}
00144          */
00145         virtual Map::View getAll(Collection::View vKeys) const;
00146 
00147         /**
00148          * {@inheritDoc}
00149          */
00150         virtual Object::Holder put(Object::View vKey, Object::Holder ohValue,
00151                 int64_t cMillis);
00152 
00153     // ----- NamedCache interface -------------------------------------------
00154 
00155     public:
00156         /**
00157          * {@inheritDoc}
00158          */
00159         virtual void release();
00160 
00161         /**
00162          * {@inheritDoc}
00163          */
00164         virtual void destroy();
00165 
00166         /**
00167          * {@inheritDoc}
00168          */
00169         virtual void truncate();
00170 
00171         /**
00172          * {@inheritDoc}
00173          */
00174         virtual String::View getCacheName() const;
00175 
00176         /**
00177          * {@inheritDoc}
00178          */
00179         virtual bool isActive() const;
00180 
00181         /**
00182          * {@inheritDoc}
00183          */
00184         virtual NamedCache::CacheServiceHandle getCacheService();
00185 
00186         /**
00187          * {@inheritDoc}
00188          */
00189         virtual NamedCache::CacheServiceView getCacheService() const;
00190 
00191     // ----- ConcurrentMap interface ----------------------------------------
00192 
00193     public:
00194         /**
00195          * {@inheritDoc}
00196          */
00197         virtual bool lock(Object::View vKey, int64_t cWait) const;
00198 
00199         /**
00200          * {@inheritDoc}
00201          */
00202         virtual bool lock(Object::View vKey) const;
00203 
00204         /**
00205          * {@inheritDoc}
00206          */
00207         virtual bool unlock(Object::View vKey) const;
00208 
00209     // ----- InvocableMap interface -----------------------------------------
00210 
00211     public:
00212         /**
00213          * {@inheritDoc}
00214          */
00215         virtual Object::Holder invoke(Object::View vKey,
00216                 EntryProcessor::Handle hAgent);
00217 
00218         /**
00219          * {@inheritDoc}
00220          */
00221         virtual Map::View invokeAll(Collection::View vCollKeys,
00222                 EntryProcessor::Handle hAgent);
00223 
00224         /**
00225          * {@inheritDoc}
00226          */
00227         virtual Map::View invokeAll(Filter::View vFilter,
00228                 EntryProcessor::Handle hAgent);
00229 
00230         /**
00231          * {@inheritDoc}
00232          */
00233         virtual Object::Holder aggregate(Collection::View vCollKeys,
00234                 EntryAggregator::Handle hAgent) const;
00235 
00236         /**
00237          * {@inheritDoc}
00238          */
00239         virtual Object::Holder aggregate(Filter::View vFilter,
00240                 EntryAggregator::Handle hAgent) const;
00241 
00242     // ----- QueryMap interface ---------------------------------------------
00243 
00244     public:
00245         /**
00246          * {@inheritDoc}
00247          */
00248         virtual Set::View keySet(Filter::View vFilter) const;
00249 
00250         /**
00251          * {@inheritDoc}
00252          */
00253         virtual Set::View entrySet(Filter::View vFilter) const;
00254 
00255         /**
00256          * {@inheritDoc}
00257          */
00258         virtual Set::View entrySet(Filter::View vFilter,
00259                 Comparator::View vComparator) const;
00260 
00261         /**
00262          * {@inheritDoc}
00263          */
00264         virtual void addIndex(ValueExtractor::View vExtractor, bool fOrdered,
00265                 Comparator::View vComparator);
00266 
00267         /**
00268          * {@inheritDoc}
00269          */
00270         virtual void removeIndex(ValueExtractor::View vExtractor);
00271 
00272     // ----- ObservableMap interface ----------------------------------------
00273 
00274     public:
00275         /**
00276          * {@inheritDoc}
00277          */
00278         virtual void addKeyListener(MapListener::Handle hListener,
00279                 Object::View vKey, bool fLite);
00280 
00281         /**
00282          * {@inheritDoc}
00283          */
00284         virtual void removeKeyListener(MapListener::Handle hListener,
00285                 Object::View vKey);
00286 
00287         /**
00288          * {@inheritDoc}
00289          */
00290         virtual void addMapListener(MapListener::Handle hListener);
00291 
00292         /**
00293         * {@inheritDoc}
00294         */
00295         virtual void removeMapListener(MapListener::Handle hListener);
00296         
00297         /**
00298          * {@inheritDoc}
00299          */
00300         virtual void addFilterListener(MapListener::Handle hListener,
00301                 Filter::View vFilter = NULL, bool fLite = false);
00302 
00303         /**
00304          * {@inheritDoc}
00305          */
00306         virtual void removeFilterListener(MapListener::Handle hListener,
00307                 Filter::View vFilter = NULL);
00308 
00309     // ----- Object interface -----------------------------------------------
00310 
00311     public:
00312         /**
00313          * {@inheritDoc}
00314          */
00315         virtual TypedHandle<const String> toString() const;
00316 
00317     // ----- property getters/setters ---------------------------------------
00318 
00319     public:
00320         /**
00321          * Get the actual (wrapped) named cache.
00322          *
00323          * @return the wrapped cache
00324          */
00325         virtual NamedCache::Handle getNamedCache();
00326 
00327         /**
00328          * Get the actual (wrapped) named cache.
00329          *
00330          * @return the wrapped cache
00331          */
00332         virtual NamedCache::View getNamedCache() const;
00333 
00334     // ----- data members ---------------------------------------------------
00335 
00336     protected:
00337         /**
00338          * Actual (wrapped) NamedCache.
00339          */
00340         FinalHandle<NamedCache> f_hNamedCache;
00341 };
00342 
00343 COH_CLOSE_NAMESPACE3
00344 
00345 #endif // COH_WRAPPER_NAMED_CACHE_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.