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

F79659-03

coherence/util/aggregator/PriorityAggregator.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_PRIORITY_AGGREGATOR_HPP
00008 #define COH_PRIORITY_AGGREGATOR_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofWriter.hpp"
00014 #include "coherence/net/AbstractPriorityTask.hpp"
00015 #include "coherence/util/InvocableMap.hpp"
00016 
00017 COH_OPEN_NAMESPACE3(coherence,util,aggregator)
00018 
00019 using coherence::io::pof::PofReader;
00020 using coherence::io::pof::PofWriter;
00021 using coherence::net::AbstractPriorityTask;
00022 
00023 
00024 /**
00025 * PriorityAggregator is used to explicitly control the scheduling priority
00026 * and timeouts for execution of EntryAggregator-based methods.
00027 *
00028 * For example, let's assume that there is an <i>Orders</i> cache that belongs
00029 * to a partitioned cache service configured with a <i>request-timeout</i> and
00030 * <i>task-timeout</i> of 5 seconds.
00031 * Also assume that we are willing to wait longer for a particular
00032 * aggregation request that scans the entire cache. Then we could override the
00033 * default timeout values by using the PriorityAggregator as follows:
00034 * <pre>
00035 *   Float64Average::Handle aggrStandard =
00036 *           Float64Average::create(ReflectionExtractor::create("getPrice"));
00037 *   PriorityAggregator::Handle aggrPriority =
00038 *           PriorityAggregator::create(aggrStandard);
00039 *   aggrPriority->setExecutionTimeoutMillis(PriorityTask::timeout_none);
00040 *   aggrPriority->setRequestTimeoutMillis(PriorityTask::timeout_none);
00041 *   cacheOrders->aggregate(NULL, aggrPriority);
00042 * </pre>
00043 *
00044 * This is an advanced feature which should be used judiciously.
00045 *
00046 * @author djl  2008.05.16
00047 */
00048 class COH_EXPORT PriorityAggregator
00049     : public class_spec<PriorityAggregator,
00050         extends<AbstractPriorityTask>,
00051         implements<InvocableMap::ParallelAwareAggregator> >
00052     {
00053     friend class factory<PriorityAggregator>;
00054 
00055     // ----- constructors ---------------------------------------------------
00056 
00057     protected:
00058         /**
00059         * Default constructor (necessary for the PortableObject interface).
00060         */
00061         PriorityAggregator();
00062 
00063         /**
00064         * Construct a PriorityAggregator.
00065         *
00066         * @param hAggregator  the aggregator wrapped by this
00067         *                     PriorityAggregator
00068         */
00069         PriorityAggregator(
00070                 InvocableMap::ParallelAwareAggregator::Handle hAggregator);
00071 
00072 
00073     // ----- InvocableMap::EntryAggregator interface ------------------------
00074 
00075     public:
00076         /**
00077         * {@inheritDoc}
00078         */
00079         virtual Object::Holder aggregate(Set::View vSetEntries);
00080 
00081         /**
00082         * {@inheritDoc}
00083         */
00084         virtual InvocableMap::EntryAggregator::Handle
00085                 getParallelAggregator();
00086 
00087         /**
00088         * {@inheritDoc}
00089         */
00090         virtual Object::Holder aggregateResults(
00091                 Collection::View vCollResults);
00092 
00093 
00094     // ----- PortableObject interface ---------------------------------------
00095 
00096     public:
00097         /**
00098         * {@inheritDoc}
00099         */
00100         virtual void readExternal(PofReader::Handle hIn);
00101 
00102         /**
00103         * {@inheritDoc}
00104         */
00105         virtual void writeExternal(PofWriter::Handle hOut) const;
00106 
00107 
00108     // ----- Object interface -----------------------------------------------
00109 
00110     public:
00111         /**
00112         * {@inheritDoc}
00113         */
00114         virtual TypedHandle<const String> toString() const;
00115 
00116 
00117     // ----- data member accessors ------------------------------------------
00118 
00119     public:
00120         /**
00121         * Obtain the underlying aggregator.
00122         *
00123         * @return the aggregator wrapped by this PriorityAggregator
00124         */
00125         virtual InvocableMap::ParallelAwareAggregator::Handle
00126                 getAggregator();
00127 
00128         /**
00129         * Obtain the underlying aggregator.
00130         *
00131         * @return the aggregator wrapped by this PriorityAggregator
00132         */
00133         virtual InvocableMap::ParallelAwareAggregator::View
00134                  getAggregator() const;
00135 
00136 
00137     // ----- data members ---------------------------------------------------
00138 
00139     private:
00140         /**
00141         * The wrapped aggregator.
00142         */
00143         FinalHandle<InvocableMap::ParallelAwareAggregator> f_hAggregator;
00144     };
00145 
00146 COH_CLOSE_NAMESPACE3
00147 
00148 #endif // COH_PRIORITY_AGGREGATOR_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.