00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 #ifndef COH_CONDITIONAL_PUT_ALL_HPP
00017 #define COH_CONDITIONAL_PUT_ALL_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/io/pof/PofReader.hpp"
00022 #include "coherence/io/pof/PofWriter.hpp"
00023 #include "coherence/io/pof/PortableObject.hpp"
00024 #include "coherence/util/Filter.hpp"
00025 #include "coherence/util/InvocableMap.hpp"
00026 #include "coherence/util/Map.hpp"
00027 #include "coherence/util/processor/AbstractProcessor.hpp"
00028 
00029 COH_OPEN_NAMESPACE3(coherence,util, processor)
00030 
00031 using coherence::io::pof::PofReader;
00032 using coherence::io::pof::PofWriter;
00033 using coherence::io::pof::PortableObject;
00034 using coherence::util::Filter;
00035 using coherence::util::InvocableMap;
00036 using coherence::util::Map;
00037 
00038 
00039 
00040 
00041 
00042 
00043 
00044 
00045 
00046 class COH_EXPORT ConditionalPutAll
00047     : public class_spec<ConditionalPutAll,
00048         extends<AbstractProcessor>,
00049         implements<PortableObject> >
00050     {
00051     friend class factory<ConditionalPutAll>;
00052 
00053     
00054 
00055     protected:
00056 
00057 
00058 
00059         ConditionalPutAll();
00060 
00061 
00062 
00063 
00064 
00065 
00066 
00067 
00068 
00069 
00070         ConditionalPutAll(Filter::View vFilter, Map::View vMap);
00071 
00072 
00073     
00074 
00075     public:
00076 
00077 
00078 
00079         virtual Object::Holder process(
00080                 InvocableMap::Entry::Handle hEntry) const;
00081 
00082 
00083 
00084 
00085         virtual Map::View processAll(Set::View vsetEntries) const;
00086 
00087 
00088     
00089 
00090     public:
00091 
00092 
00093 
00094         virtual void readExternal(PofReader::Handle hIn);
00095 
00096 
00097 
00098 
00099         virtual void writeExternal(PofWriter::Handle hOut) const;
00100 
00101 
00102     
00103 
00104     public:
00105 
00106 
00107 
00108         virtual bool equals(Object::View v) const;
00109 
00110 
00111 
00112 
00113         virtual size32_t hashCode() const;
00114 
00115 
00116     
00117 
00118     protected:
00119 
00120 
00121 
00122         MemberView<Filter> m_vFilter;
00123 
00124 
00125 
00126 
00127         MemberView<Map> m_vMap;
00128     };
00129 
00130 COH_CLOSE_NAMESPACE3
00131 
00132 #endif // COH_CONDITIONAL_PUT_ALL_HPP