Oracle® Fusion Middleware C++ API Reference for Oracle Coherence
12c (12.2.1.4.0)

E90870-01

coherence/util/processor/AbstractClusterProcessor.hpp

00001 /*
00002 * AbstractClusterProcessor.hpp
00003 *
00004 * Copyright (c) 2000, 2019, 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_CLUSTER_PROCESSOR_HPP
00017 #define COH_ABSTRACT_CLUSTER_PROCESSOR_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 
00025 #include "coherence/util/processor/AbstractProcessor.hpp"
00026 
00027 COH_OPEN_NAMESPACE3(coherence,util, processor)
00028 
00029 using coherence::io::pof::PofReader;
00030 using coherence::io::pof::PofWriter;
00031 using coherence::io::pof::PortableObject;
00032 
00033 /**
00034 * Base class for entry processors that may only be executed
00035 * within the cluster.
00036 *
00037 * As of 12.2.1.3 this class is deprecated in favor of AbstractProcessor
00038 * which now includes a default process method implementation.
00039 *
00040 * @deprecated 12.2.1.3
00041 *
00042 * @author wl  2013.07.02
00043 */
00044 class COH_EXPORT AbstractClusterProcessor
00045     : public abstract_spec<AbstractClusterProcessor,
00046         extends<AbstractProcessor>,
00047         implements<PortableObject> >
00048     {
00049     // ----- PortableObject interface ---------------------------------------
00050 
00051     public:
00052         /**
00053         * {@inheritDoc}
00054         */
00055         virtual void readExternal(PofReader::Handle hIn);
00056 
00057         /**
00058         * {@inheritDoc}
00059         */
00060         virtual void writeExternal(PofWriter::Handle hOut) const;
00061     };
00062 
00063 COH_CLOSE_NAMESPACE3
00064 
00065 #endif // COH_ABSTRACT_CLUSTER_PROCESSOR_HPP
Copyright © 2000, 2019, Oracle and/or its affiliates. All rights reserved.