Oracle Coherence for C++ API
Release 3.7.1.0
E22845-01
00001 /* 00002 * AbstractProcessor.hpp 00003 * 00004 * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. 00005 * 00006 * Oracle is a registered trademarks of Oracle Corporation and/or its 00007 * affiliates. 00008 * 00009 * This software is the confidential and proprietary information of Oracle 00010 * Corporation. You shall not disclose such confidential and proprietary 00011 * information and shall use it only in accordance with the terms of the 00012 * license agreement you entered into with Oracle. 00013 * 00014 * This notice may not be removed or altered. 00015 */ 00016 #ifndef COH_ABSTRACT_PROCESSOR_HPP 00017 #define COH_ABSTRACT_PROCESSOR_HPP 00018 00019 #include "coherence/lang.ns" 00020 00021 #include "coherence/util/Describable.hpp" 00022 #include "coherence/util/InvocableMap.hpp" 00023 #include "coherence/util/Map.hpp" 00024 #include "coherence/util/Set.hpp" 00025 00026 COH_OPEN_NAMESPACE3(coherence,util, processor) 00027 00028 using coherence::util::InvocableMap; 00029 using coherence::util::Map; 00030 using coherence::util::Set; 00031 00032 00033 /** 00034 * An AbstractProcessor is a partial EntryProcessor implementation that 00035 * provides the default implementation of the processAll method. 00036 * 00037 * @author tb 2008.04.28 00038 */ 00039 class COH_EXPORT AbstractProcessor 00040 : public abstract_spec<AbstractProcessor, 00041 extends<Describable>, 00042 implements<InvocableMap::EntryProcessor> > 00043 { 00044 // ----- InvocableMap::EntryProcessor interface ------------------------- 00045 00046 public: 00047 /** 00048 * {@inheritDoc} 00049 */ 00050 virtual Map::View processAll(Set::View vSetEntries) const; 00051 }; 00052 00053 COH_CLOSE_NAMESPACE3 00054 00055 #endif // COH_ABSTRACT_PROCESSOR_HPP